如下代码 String [] str = new String[20]; //下面使用equals就是错误的语句 if(str.equals()null){ } //使用!=就可以,为什么? if(str!=null){ } 如上代码所示,请各位不吝赐教,谢谢。 查看完整描述