Java 中区分大小写的字符串比较。

java 8object oriented programmingprogramming

您可以使用 equals() 方法或 compareTo() 方法比较两个字符串。

其中,

  • equals() 方法将此字符串与指定对象进行比较。
  • compareTo() 方法按字典顺序比较两个字符串。比较基于字符串中每个字符的 Unicode 值。

这两个方法将给定的字符串与大小写进行比较,即不同大小写的字符串将得到不同的处理。

示例

以下示例演示了使用 equals() 方法比较两个字符串。

public class Sample{
   public static void main(String args[]) {
      String str = "Hello World";
      String anotherString = "hello world";
      Object objStr = str;
      System.out.println( str.equals(anotherString) );
   }
}

输出

false

相关文章