Java 字符串比较示例代码
我们可以使用 compareTo() 方法和 == 运算符来比较 Java 中的字符串。
comapareTo() 方法: The compareTo() 方法按字母顺序比较两个字符串。比较基于字符串中每个字符的 Unicode 值。此 String 对象表示的字符序列按字母顺序与参数字符串表示的字符序列进行比较。
The == 运算符: 您可以使用 == 运算符比较两个字符串。但是,它比较的是给定变量的引用,而不是值。
示例
import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "tutorials", str2 = "point"; // comparing str1 and str2 int retval = str1.compareTo(str2); System.out.println(str1==str2); // prints the return value of the comparison if (retval < 0) { System.out.println("str1 is greater than str2"); } else if (retval == 0) { System.out.println("str1 is equal to str2"); } else { System.out.println("str1 is less than str2"); } } }
输出
false str1 is less than str2
广告