在Java中找到Vector的最大元素

Vector的最大元素可以使用java.util.Collections.max()方法获得。此方法包含一个参数,即Vector,其最大元素已确定,并且它从Vector返回最大元素。

演示此的程序如下所示-

示例

import java.util.Collections;
import java.util.Vector;
public class Demo {
   public static void main(String args[]) {
      Vector vec = new Vector();
      vec.add(7);
      vec.add(3);
      vec.add(9);
      vec.add(5);
      vec.add(8);
      System.out.println("The Vector elements are: " + vec);
      System.out.println("The maximum element of the Vector is: " + Collections.max(vec));
   }
}

上面程序的输出如下-

The Vector elements are: [7, 3, 9, 5, 8]
The maximum element of the Vector is: 9

现在让我们了解上面的程序。

向量已创建。然后使用Vector.add()将元素添加到Vector中。显示矢量。Collections.max()用于查找Vector的最大元素并显示。演示这的代码片段如下-

Vector vec = new Vector();
vec.add(7);
vec.add(3);
vec.add(9);
vec.add(5);
vec.add(8);
System.out.println("The Vector elements are: " + vec);
System.out.println("The maximum element of the Vector is: " + Collections.max(vec));