在空对象模式(Null Object Pattern)中,一个空对象取代 NULL 对象实例的检查。
简单来说就是 平常我们操作的对象变量为空 那么使用此对象变量 就会报错 空指针异常
那么空对象模式就能解决这个问题 当你传入的值不符合那么我就返回一个 空对象类(自定义)
案例更具 客户传来的名称 来返回对应的RealCustomer 或 NullCustomer 对象。
定于一个抽象类 (规定行为)
public abstract class AbstractCustomer {
protected String name;
public abstract boolean isNil();
public abstract String getName();
}
定于真实 类
public class RealCustomer extends AbstractCustomer {
public RealCustomer(String name) {
this.name = name;
}
@Override
public String getName() {
return name;
}
@Override
public boolean isNil() {
return false;
}
}
定于空对象类
public class NullCustomer extends AbstractCustomer {
@Override
public String getName() {
return "Not";
}
@Override
public boolean isNil() {
return true;
}
}
定于工厂 更具传来的name 来进行判断 返回对应的对象
public class CustomerFactory {
public static final String[] names = {"Rob", "Joe", "Julie"};
public static AbstractCustomer getCustomer(String name){
for (int i = 0; i < names.length; i++) {
if (names[i].equalsIgnoreCase(name)){//如果存在
return new RealCustomer(name);//返回真实对象
}
}
//当name不存在那么返回一个空对象
return new NullCustomer();
}
}
测试
public class PatternDemo {
public static void main(String[] args) {
AbstractCustomer customer1 = CustomerFactory.getCustomer("Rob");
AbstractCustomer customer2 = CustomerFactory.getCustomer("Bob");
AbstractCustomer customer3 = CustomerFactory.getCustomer("Julie");
AbstractCustomer customer4 = CustomerFactory.getCustomer("Laura");
System.out.println(customer1.getName());
System.out.println(customer2.getName());
System.out.println(customer3.getName());
System.out.println(customer4.getName());
}
}
Rob
Not
Julie
Not
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_45203607/article/details/120238477
内容来源于网络,如有侵权,请联系作者删除!