阅读本文大概需要 3.6 分钟。
译者:lizeyang
来源:blog.csdn.net/lizeyang/article/details/40040817
问题
if (someobject != null) {
someobject.doCalc();
}
回答
null 是一个有效有意义的返回值(Where null is a valid response in terms of the contract; and)
null是有误的(Where it isn’t a valid response.)
先说第2种情况
assert语句,你可以把错误原因放到assert的参数中,这样不仅能保护你的程序不往下走,而且还能把错误原因返回给调用方,岂不是一举两得。(原文介绍了assert的使用,这里省略)
也可以直接抛出空指针异常。上面说了,此时null是个不合理的参数,有问题就是有问题,就应该大大方方往外抛。
第1种情况会更复杂一些。
假如方法的返回类型是collections,当返回结果是空时,你可以返回一个空的collections(empty list),而不要返回null.这样调用侧就能大胆地处理这个返回,例如调用侧拿到返回后,可以直接print list.size(),又无需担心空指针问题。(什么?想调用这个方法时,不记得之前实现该方法有没按照这个原则?所以说,代码习惯很重要!如果你养成习惯,都是这样写代码(返回空collections而不返回null),你调用自己写的方法时,就能大胆地忽略判空)
public interface Action {
void doSomething();}
public interface Parser {
Action findAction(String userInput);}
public class MyParser implements Parser {
private static Action DO_NOTHING = new Action() {
public void doSomething() { /* do nothing */ }
};
public Action findAction(String userInput) {
// ...
if ( /* we can't find any actions */ ) {
return DO_NOTHING;
}
}
}
Parser parser = ParserFactory.getParser();
if (parser == null) {
// now what?
// this would be an example of where null isn't (or shouldn't be) a valid response
}
Action action = parser.findAction(someInput);
if (action == null) {
// do nothing}
else {
action.doSomething();
}
ParserFactory.getParser().findAction(someInput).doSomething();
其他回答精选:
object<不可能为空>.equal(object<可能为空>))
"bar".equals(foo)
foo.equals("bar")
推荐阅读:
腾讯面试官:如何停止一个正在运行的线程?我一脸蒙蔽......
微信扫描二维码,关注我的公众号
朕已阅