摘要: bind绑定器和function函数对象 bind1st和bind2nd什么时候使用 在c++ STL中提供了泛型算法 #include <iostream> #include "vector" #include <functional> //包括了函数对象 #include "algorithm" 阅读全文
posted @ 2023-01-23 13:06 satellite2002 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 尽量使用const,enum,inline替换 #define 因为,#define 替换发生在预处理阶段,编译器对这个替换内容就缺少了类型检测,并且不利于错误信息的查看 编译器再声明数组时必须知道数组的大小,而不是使用一个变量,我便有了如下测试 枚举类型做数组大小(在类中做成员) class Ga 阅读全文
posted @ 2023-01-23 13:02 satellite2002 阅读(36) 评论(0) 推荐(0) 编辑