Java 程序比较字符串以判断相等性


在 Java 中要比较字符串是否相等,请使用 equals() 方法。让我们看几个示例,其中我们检查了相同和不同的字符串值。

示例

 在线示例

public class Demo {
    public static void main(String[] args) {
       String one = "x";
       String two = "x";
       if(one.equals(two)) {
          System.out.println("String one is equal to two i.e. one==two");
       }else{
          System.out.println("String one is not equal to String two i.e. one!=two");
       }
    }
}

输出

String one is equal to two i.e. one==two

让我们看另一个示例。

示例

 在线示例

public class Demo {
    public static void main(String[] args) {
       String one = "x";
       String two = "y";
       if(one.equals(two)) {
          System.out.println("String one is equal to two i.e. one==two");
       }else{
          System.out.println("String one is not equal to String two i.e. one!=two");
       }
    }
}

输出

String one is not equal to String two i.e. one!=two

更新日期:2020 年 6 月 26 日

192 次浏览

动你的职业生涯

完成课程后获得认证

开始
广告