/** * 结构型模式 过滤器模式 * 使用不同的标准来过滤一组对象,通过逻辑运算以解耦的方式把它们连接起来。 * */ #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> void mytest() { return; } int main() { mytest(); system("pause"); return 0; }
原文:http://www.cnblogs.com/lsgxeva/p/7780176.html