Home  >  Article  >  Java  >  Java Example - Set Comparison

Java Example - Set Comparison

黄舟
黄舟Original
2017-01-21 10:56:581184browse

The following example converts a string into a collection and uses Collection.min() and Collection.max() of the Collection class to compare elements in the collection:

/*
 author by w3cschool.cc
 Main.java
 */import java.util.Collections; import java.util.Set;import java.util.TreeSet;class Main {
   public static void main(String[] args) {
      String[] coins = { "Penny", "nickel", "dime", 
      "Quarter", "dollar" };
      Set set = new TreeSet();
      for (int i = 0; i < coins.length; i++)
         set.add(coins[i]);
      System.out.println(Collections.min(set));
      System.out.println(Collections.min(set, String.CASE_INSENSITIVE_ORDER));
      for(int i=0;i<=10;i++)
         System.out.print("-");
      System.out.println("");
      System.out.println(Collections.max(set));
      System.out.println(Collections.max(set, String.CASE_INSENSITIVE_ORDER));
   }}

The output of the above code is: :

Penny
dime-----------
nickel
Quarter

The above is the Java example-set comparison content. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn