InfoHeap
Tech
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

Java tutorials & examples

    Java Basics

    • Hello World
    • print and println
    • System.out.format
    • static and instance variables

    Java classes and objects

    • this keyword

    Java Strings

    • Initialize string array
    • String prefix match
    • compare string
    • string to int

    Java Arrays

    • Array basics
    • 2d array example
    • array for-each loop
    • fill an array

    Java cookbooks

    • method equals vs operator ==
    • print exception as string
    • Arrays.sort custom Comparator
    • create inline Comparator
     
    • Home
    • > Tutorials
    • > Java

    Java – Arrays.sort custom Comparator example

    on Jun 26, 2016
    import java.util.Arrays;
    import java.util.Comparator;
    
    public class Main {
      public static void main(String[] args) {
        // Custom Comparator to compare int value of String
        Comparator<String> comparator = new Comparator<String>() {
          @Override
          public int compare(String o1, String o2) {
            return Integer.valueOf(o1).compareTo(Integer.valueOf(o2));
          }
        };
        String[] strArr = {"10", "2", "3"};
        System.out.println("Sort outcome without custom Comparator");
        Arrays.sort(strArr);
        for (String str: strArr) {
          System.out.println(str);
        }
        System.out.println("Sort outcome with custom Comparator");
        Arrays.sort(strArr, comparator);
        for (String str: strArr) {
          System.out.println(str);
        }
      }
    }
    Sort outcome without custom Comparator
    10
    2
    3
    Sort outcome with custom Comparator
    2
    3
    10
    

    Suggested posts:

    1. WordPress – customize facebook plugin opengraph meta tags
    2. Java – equals vs ==
    3. DIG quick start tutorial for DNS Lookup
    4. How to clear default app on android
    5. Java – print exception as string examples
    6. Mac – print java home on command line
    7. Using ssh sftp updater support for updating wordpress plugins and themes
    8. Java System.out.print and println
    Share this article: share on facebook share on linkedin tweet this submit to reddit
    Posted in Tutorials | Tagged Java
    • Browse content
    • Article Topics
    • Article archives
    • Contact Us
    Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | Company results | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries | InfoHeap Money

    Copyright © 2025 InfoHeap.

    Powered by WordPress