Java Data Type Tutorial - Java String.compareTo(String anotherString)








Syntax

String.compareTo(String anotherString) has the following syntax.

public int compareTo(String anotherString)

Example

In the following code shows how to use String.compareTo(String anotherString) method.

public class Main {
  public static void main(String[] argv) {
    String str = "Java2s.com";
    String str2 = "java2s.com";
    System.out.println(str.compareTo(str2));

  }
}

The code above generates the following result.