开发者技术前线 ,汇集技术前线快讯和关注行业趋势,大厂干货,是开发者经历和成长的优秀指南。
“上中台吗?会送命的那种!”
程序员喜欢的 5 款最佳最牛代码比较工具
微信支付的跨平台架构到底有多牛?
微信13亿日活下,腾讯把Elasticsearch用的到底有多牛?
昨晚家里停网后,我动了邪念破解了隔壁小姐姐的wifi密码
今日头条、抖音推荐算法原理全文详解
点击“开发者技术前线”,选择“星标🔝”
在看|星标|留言, 真爱
转自:CSDN 作者:lizeyang
blog.csdn.net/lizeyang/article/details/40040817
...if (someobject != null) {
someobject.doCalc();}...
最终,项目中会存在大量判空代码,多么丑陋繁冗!如何避免这种情况?我们是否滥用了判空呢?
public interface Action {
void doSomething();}
public interface Parser {
Action findAction(String userInput);}
其中,Parse有一个接口FindAction,这个接口会依据用户的输入,找到并执行对应的动作。假如用户输入不对,可能就找不到对应的动作(Action),因此findAction就会返回null,接下来action调用doSomething方法时,就会出现空指针。
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")
开发者技术前线 ,汇集技术前线快讯和关注行业趋势,大厂干货,是开发者经历和成长的优秀指南。