如何在 Java 中比较两个字符串



问题说明

如何比较两个字符串?

解决方案

以下示例通过使用字符串类的 str compareTo (string)、str compareToIgnoreCase(String) 和 str compareTo(object string) 来比较两个字符串,并返回比文本串的第一个奇数字符的 ASCII 差值。

public class StringCompareEmp{
   public static void main(String args[]){
      String str = "Hello World";
      String anotherString = "hello world";
      Object objStr = str;

      System.out.println( str.compareTo(anotherString) );
      System.out.println( str.compareToIgnoreCase(anotherString) );
      System.out.println( str.compareTo(objStr.toString()));
   }
}

结果

上述代码示例将生成以下结果。

-32
0
0

通过 equals() 比较字符串

此方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 并且是一个表示与此对象相同的字符序列的字符串对象时,结果为 true。

public class StringCompareequl{
   public static void main(String []args){
      String s1 = "tutorialspoint";
      String s2 = "tutorialspoint";
      String s3 = new String ("Tutorials Point");
      System.out.println(s1.equals(s2));
      System.out.println(s2.equals(s3));
   }
}

上述代码示例将生成以下结果。

true 
false 

通过 == 运算符比较字符串

public class StringCompareequl{
   public static void main(String []args){
      String s1 = "tutorialspoint";
      String s2 = "tutorialspoint";
      String s3 = new String ("Tutorials Point");
      System.out.println(s1 == s2);
      System.out.println(s2 == s3);
   }
}

上述代码示例将生成以下结果。

true
false 
java_strings.htm
广告