当前位置: 技术问答>java相关
帮忙看一个简单的问题!
来源: 互联网 发布时间:2015-08-06
本文导语: String test=null; if(test==null) test="01"; 执行该if语句后,test的值仁为null,为什么????????? | 应该没问题: try: String test=null; if(test.equals(null)) test="01"; | 不会的,是你搞...
String test=null;
if(test==null) test="01";
执行该if语句后,test的值仁为null,为什么?????????
if(test==null) test="01";
执行该if语句后,test的值仁为null,为什么?????????
|
应该没问题:
try:
String test=null;
if(test.equals(null)) test="01";
try:
String test=null;
if(test.equals(null)) test="01";
|
不会的,是你搞错了,我刚才试过test的值变01了
|
你不如先把它print出来,看看为多少
|
或者你的test不为null
|
yes