java.util.Vector.contains()方法實例
contains(Object elem) 方法是用來測試向量中的元素是否存在。
聲明
以下是java.util.Vector.contains()方法的聲明
public boolean contains(Object elem)
參數
-
elem-- 這是一個作為輸入的對象。
返回值
true-- 當且僅當指定的對象是相同的在此向量的分量,則返回true。否則返回false。
異常
-
ClassCastException-- 如果指定元素的類型與此集合(可選)不兼容。
NullPointerException-- 如果指定的元素為null,並且此collection不支持null元素(可選)。
例子
下麵的例子顯示java.util.Vector.contains()方法的使用。
package com.yiibai; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty Vector vec with an initial capacity of 4 Vector<Integer> vec = new Vector<Integer>(4); // use add() method to add elements in the vector vec.add(4); vec.add(3); vec.add(2); vec.add(1); // let us check the existence of number 4 in the vector System.out.println("Checking the existence of number 4 :- "+vec.contains(4)); } }
讓我們編譯並運行上述程序,這將產生以下結果。向量存在數量,方法調用返回true
Checking the existence of number 4 :- true