神技巧:去掉煩人的 “ ! = null " (判空語句)
問題
...if (someobject != null) {
someobject.doCalc();}...
最終,項目中會存在大量判空代碼,多么丑陋繁冗!如何避免這種情況?我們是否濫用了判空呢?
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();}
2、精簡
ParserFactory.getParser().findAction(someInput).doSomething();
因為無論什么情況,都不會返回空對象,因此通過findAction拿到action后,可以放心地調(diào)用action的方法。
其他回答精選:
1、如果要用equal方法,請用object<不可能為空>.equal(object<可能為空>))
例如使用 :
"bar".equals(foo)
而不是
foo.equals("bar")
免責聲明:本文內(nèi)容由21ic獲得授權(quán)后發(fā)布,版權(quán)歸原作者所有,本平臺僅提供信息存儲服務。文章僅代表作者個人觀點,不代表本平臺立場,如有問題,請聯(lián)系我們,謝謝!