Easy Tutorial
❮ Java8 New Features String Regionmatch ❯

Java Example - Getting the Maximum Element of a Vector

Java Examples

The following example demonstrates how to use the v.add() method of the Vector class and the Collections.max() method of the Collection class to obtain the maximum element of a vector:

Main.java File

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("The maximum element is: " + obj);
   }
}

The output of the above code is:

The maximum element is: 3.4324

Java Examples

❮ Java8 New Features String Regionmatch ❯