What is the uses of int compareTo () method in Java?
Java.lang.String.compareTo() There are three variants of compareTo() method. This article depicts about all of them, as follows 1. int compareTo(Object obj) : This method compares this String to another Object. Syntax : int compareTo(Object obj) Parameters : obj : the Object to be compared. Return Value : The value 0 if the argument is a string lexicographically equal to this string; a value less than 0 if the argument is a string lexicographically greater than this string; and a value greater than 0 if the argument is a string lexicographically less than this string. public class Test { public static void main(String args[]) { String str1 = "Strings are immutable"; String str2 = new String("Strings are immutable"); String str3 = new String("Integers are not immutable"); int result = str1.compareTo( str2 ); System.out.println(result); result = str2.compareTo( str3 );