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 并且是表示与此对象相同的字符序列的 String 对象时,结果才为真。
    
    public class StringCompareequl{
       public static void main(String []args){
          String s1 = "jc2182";
          String s2 = "jc2182";
          String s3 = new String ("CAINIAOYA");
          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 = "jc2182";
          String s2 = "jc2182";
          String s3 = new String ("CAINIAOYA");
          System.out.println(s1 == s2);
          System.out.println(s2 == s3);
       }
    }
    
    上面的代码示例将产生以下结果。
    
    true
    false