在空对象模式(Null Object Pattern)中,一个空对象取代 NULL 对象实例的检查。Null 对象不是检查空值,而是反应一个不做任何动作的关系。这样的 Null 对象也可以在数据不可用的时候提供默认的行为。
在空对象模式中,我们创建一个指定各种要执行的操作的抽象类和扩展该类的实体类,还创建一个未对该类做任何实现的空对象类,该空对象类将无缝地使用在需要检查空值的地方。

意图

通过对缺失对象的封装,以提供默认无任何行为的对象替代品

适用场景

满足下列条件时可以使用空对象模式

  • 一个对象需要一个协作对象,但并无具体的协作对象
  • 协作对象不需要做任何事情

优点

1.对于对象交互更加统一
2.解决部分语言不支持返回nil的问题

缺点

会增加空对象的开发量

示例

image.png

  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <vector>
  4. class ICustomer
  5. {
  6. public:
  7. virtual bool IsNil()=0;
  8. virtual std::string GetName()=0;
  9. protected:
  10. std::string name;
  11. };
  12. class RealCustomer : public ICustomer
  13. {
  14. public:
  15. RealCustomer(std::string name)
  16. {
  17. this->name = name;
  18. }
  19. virtual std::string GetName()
  20. {
  21. return name;
  22. }
  23. virtual bool IsNil()
  24. {
  25. return false;
  26. }
  27. };
  28. class NullCustomer : public ICustomer
  29. {
  30. public:
  31. virtual std::string GetName()
  32. {
  33. return "Invalid Customer";
  34. }
  35. virtual bool IsNil()
  36. {
  37. return true;
  38. }
  39. };
  40. class CustomerFactory
  41. {
  42. public:
  43. static std::vector<std::string> names;
  44. static ICustomer* GetCustomer(std::string name){
  45. for (int i = 0; i < names.size(); i++) {
  46. if (names[i] == name){
  47. return new RealCustomer(name);
  48. }
  49. }
  50. return new NullCustomer();
  51. }
  52. };
  53. std::vector<std::string> CustomerFactory::names = { "Rob", "Bob", "Laura" };
  54. int main()
  55. {
  56. ICustomer* customer1 = CustomerFactory::GetCustomer("Rob");
  57. ICustomer* customer2 = CustomerFactory::GetCustomer("Bob");
  58. ICustomer* customer3 = CustomerFactory::GetCustomer("Julie");
  59. ICustomer* customer4 = CustomerFactory::GetCustomer("Laura");
  60. std::cout << "Customers:" << std::endl;
  61. std::cout << customer1->GetName().c_str() << std::endl;
  62. std::cout << customer2->GetName().c_str() << std::endl;
  63. std::cout << customer3->GetName().c_str() << std::endl;
  64. std::cout << customer4->GetName().c_str() << std::endl;
  65. }
  1. Customers:
  2. Rob
  3. Bob
  4. Invalid Customer
  5. Laura