拒绝 ! = null
Java专栏
共 3327字,需浏览 7分钟
·
2021-05-16 01:02
点击关注公众号,Java干货及时送达
真香!24W字的Java面试手册(点击查看)
...if (someobject != null) {
someobject.doCalc();}...
1、null 是一个有效有意义的返回值(Where null is a valid response in terms of the contract; and)
2、null是无效有误的(Where it isn't a valid response.)
这种情况下,null是个”看上去“合理的值,例如,我查询数据库,某个查询条件下,就是没有对应值,此时null算是表达了“空”的概念。
public interface Action {
void doSomething();}
public interface Parser {
Action findAction(String userInput);}
解决这个问题的一个方式,就是使用Null Object pattern(空对象模式)
我们来改造一下
类定义如下,这样定义findAction方法后,确保无论用户输入什么,都不会返回null对象
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();}
2、精简
ParserFactory.getParser().findAction(someInput).doSomething();
1、如果要用equal方法,请用object<不可能为空>.equal(object<可能为空>))
"bar".equals(foo)
而不是
foo.equals("bar")
stackoverflow链接:
来自:CSDN,译者:lizeyang
链接:https://blog.csdn.net/lizeyang/article/details/40040817
如有文章对你有帮助,
“在看”和转发是对我最大的支持!
推荐, Java面试手册 内容包括网络协议、Java基础、进阶、字符串、集合、并发、JVM、数据结构、算法、MySQL、Redis、Mongo、Spring、SpringBoot、MyBatis、SpringCloud、Linux以及各种中间件(Dubbo、Nginx、Zookeeper、MQ、Kafka、ElasticSearch)等等... 点击文末“阅读原文”可直达
评论