驗證向量是否為空
java.util 包中的 Vector 類提供了一個 isEmpty() 方法。此方法驗證當前向量是否為空。如果給定的向量為空,則此方法返回 true,否則返回 false。
示例
import java.util.Vector;
public class Vector_IsEmpty {
public static void main(String args[]) {
Vector vect = new Vector();
vect.addElement("Java");
vect.addElement("JavaFX");
vect.addElement("HBase");
vect.addElement("Neo4j");
vect.addElement("Apache Flume");
System.out.println("Elements of the vector :"+vect);
boolean bool1 = vect.isEmpty();
if(bool1==true) {
System.out.println("Given vector is empty");
} else {
System.out.println("Given vector is not empty");
}
vect.clear();
boolean bool2 = vect.isEmpty();
System.out.println("cleared the contents of the vector");
if(bool2==true) {
System.out.println("Given vector is empty");
} else {
System.out.println("Given vector is not empty");
}
}
}
輸出
Elements of the vector :[Java, JavaFX, HBase, Neo4j, Apache Flume] Given vector is not empty cleared the contents of the vector Given vector is empty
廣告