日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Introduce Null Object(引入Null 对象)

發布時間:2024/7/23 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Introduce Null Object(引入Null 对象) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一而再,再而三地檢查對象是否null

public class Site {private Customer customer;public Customer getCustomer() {return customer;} }public class Customer {private String name;private BillingPlan plan;private PaymentHistory history;public String getName() {return name;}public String getPlan() {return plan;}public String getHistory() {return history;} }public class PaymentHistory {private Integer weeksDelingquent;public int getWeeksDelingquentInLastYear() {return weeksDelingquentInLastYear;} }Customer customer = site.getCustomer(); BillingPlan plan; if (customer == null) {plan = BillingPlan.basic(); } else {plan = customer.getPlan(); } //... String customerName; if (customer == null) {customerName = "occupant"; } else {customerName = customer.getName(); } //... int weeksDelingquent; if (customer == null) {weeksDelingquent = 0; } else {weeksDelingquent = customer.getHistory().getWeeksDelingquentInLastYear(); }

重構:將null值替換為null對象

注意:空對象一定是常量,它們的任何成分都不會發生變化。因此可以使用Singleton 模式實現。

public interface Nullable {public boolean isNull(); }public class Site {private Customer customer;public Customer getCustomer() {return customer == null ? Customer.newNull() : customer;} }public class Customer implements Nullable {private String name;private BillingPlan plan;private PaymentHistory history;public boolean isNull() {return false;}public static Customer newNull() {return new NullCustomer();}public String getName() {return name;}public String getPlan() {return plan;}public void setPlan(BillingPlan plan) {this.plan = plan;}public String getHistory() {return history;} }public class PaymentHistory implements Nullable {private Integer weeksDelingquent;public boolean isNull() {return false;}public int getWeeksDelingquentInLastYear() {return weeksDelingquentInLastYear;}public static PaymentHistory newNull() {return new NullPaymentHistory();} }public class NullCustomer extends Customer {public boolean isNull() {return true;}public String getName() {return "occupant";}public String getPlan() {return BillingPlan.basic();}public String getHistory() {return PaymentHistory.newNull();}}public class NullPaymentHistory extends PaymentHistory {public boolean isNull() {return true;}public int getWeeksDelingquentInLastYear() {return 0;}}Customer customer = site.getCustomer(); BillingPlan plan = customer.getPlan(); //... String customerName = customer.getName(); //... int weeksDelingquent = customer.getHistory().getWeeksDelingquentInLastYear();

總結

以上是生活随笔為你收集整理的Introduce Null Object(引入Null 对象)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。