行为型模型 空对象模式
/** * 行为型模型 空对象模式 * 创建一个未对该类做任何实现的空对象类,该空对象类将无缝地使用在需要检查空值的地方。 * 不要为了屏蔽null而使用空对象,应保持用null,远比用非null的值来替代“无值”要好。(慎用) * */ #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> void mytest() { return; } int main() { mytest(); system("pause"); return 0; }
时间: 2024-10-07 15:25:05