println("字符串相等"); } else { System.out.println("字符串不相等"); } 复制代码 使用equals()方法: String str1 = "Hello"; String str2 = "World"; if (str1.equals(str2)) { System.out.println("字符串相等"); } else { System.out.println("字符串不相等"); } 复制代码 注意:在使...