Java 中使用 == 运算符比较字符串


您可以使用 == 运算符比较两个字符串。但它比较的是给定变量的引用,而不是值。

实例

实时演示

public class Sample {
   public static void main(String args[]){
      String str1 = "hello";
      String str2 = "hello";
      System.out.println(str1 == str2);
   }
}

输出

true

更新时间: 26-Feb-2020

112 次浏览

开启您的 事业

通过完成课程获得认证

开始
广告