比较两个字符串的内容时,用 equals();方法!不要用==
Test运行结果:
str1==str2 is True
str1==1+"#" is True
str1==i+"#" is False
str1.equals(i+"#") is True
public class Test {
public static void main(String[] args) {
String str1="1#";
String str2=1+"#";
int i=1;
if(str1==str2){
System.out.println("str1==str2 is True");
}
if(str1==1+"#"){
System.out.println("str1==1+\"#\" is True");
}
if(str1==i+"#"){
System.out.println("str1==i+\"#\" is True");
}else{
System.out.println("str1==i+\"#\" is False");
}
if(str1.equals(i+"#")){
System.out.println("str1.equals(i+\"#\") is True");
}
}
}
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦