Home > Java > Java Tutorial > body text

Java Example - Set Comparison

黄舟
Release: 2017-01-21 10:56:58
Original
1181 people have browsed it

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));
   }}
Copy after login

The output of the above code is: :

Penny
dime-----------
nickel
Quarter
Copy after login

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


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!