The following example demonstrates using the v.add() method of the Vector class and Collections.max() of the Collection class to obtain the maximum element of the vector:
/* author by w3cschool.cc Main.java */import java.util.Collections;import java.util.Vector;public class Main { public static void main(String[] args) { Vector v = new Vector(); v.add(new Double("3.4324")); v.add(new Double("3.3532")); v.add(new Double("3.342")); v.add(new Double("3.349")); v.add(new Double("2.3")); Object obj = Collections.max(v); System.out.println("最大元素是:"+obj); }}
The output result of the above code is:
最大元素是:3.4324
The above is a Java example - getting the content of the largest element of a vector. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!