背景 mrfFile mf=new mrsFile();其中mf.name=null,此时判断mf.getName是否为空改怎么做 答案
if(null!=mf.getName()){ do something here..... }
错误用法,此时会包空指针异常
<