java.util.Vector.equals()


描述

equals(Object o) 方法被用来指定对象与此向量的相等比较。当且仅当指定的Object也是List时,它返回true,两个Lists具有相同的大小,并且两个Lists中的所有相应元素对相等。如果两个列表中包含相同的元素,则它们被定义为相等。同样的顺序。

声明

以下是java.util.Vector.equals()方法的声明

public boolean equals(Object o)

参数

o - 这是与此Vector进行相等性比较的对象。

返回值

如果指定的Object等于此Vector,则方法调用返回true。

异常

NA

实例

以下示例显示了java.util.Vector.equals()方法的用法。

package com.tutorialspoint;

import java.util.Vector;

public class VectorDemo {
   public static void main(String[] args) {

      // create two empty Vectors an initial capacity of 4      
      Vector<Integer> firstvec = new Vector<Integer>(4);
      Vector<Integer> secondvec = new Vector<Integer>(4);

      // additing in firstvec
      firstvec.add(4);
      firstvec.add(3);
      firstvec.add(2);

      // additing in secondvec
      secondvec.add(4);
      secondvec.add(3);
      secondvec.add(2);    

      // let us print all the elements available in vector
      System.out.println("Testing equality of firstvec and secondvec :"+ firstvec.equals(secondvec));
   }
}

让我们编译并运行上面的程序,这将产生以下结果。

Testing equality of firstvec and secondvec :true