首页 > 代码库 > Effective C++ Item 2 尽量以const, enum, inline 替换 #define
Effective C++ Item 2 尽量以const, enum, inline 替换 #define
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie
尽量以const, enum,inline 替换 #define --》 宁可以编译器替换预处理器
1.对于单纯常量,最好以const 对象或enum替换#define
不要用
#define ASPECT_RATIO 1.653
而用
const doube AspectRatio = 1.653
两个使用const的特殊情况
1.指向常量char *的字符串的常量指针
const char * const authorName = “Scott Meyers”
第一个const 表示指针指向的内容是不变的;第二个const表示指针本身的值是不变的
2.class专属常量
#include <iostream> using namespacestd; class A{ private: static const int num = 5; //声明 intscore[num]; }; const intA::num; //定义 int main(){ //constint A::num; //error: member A::num cannot be define in the current scope system("pause"); }
2。对于形似函数的宏(macro),最好改用inline函数替换#define
不要用
#defineCALL_WITH_MAX(a,b) f((a) > (b) ? (a) : (b)) int a = 5, b =0; CALL_WITH_MAX(++a,b); // a被累加二次 CALL_WITH_MAX(++a,b+10);// a被累加一次
而用
template<typenameT> inlinevoid callWithMax(const T &a, const T &b) //由于不知道T是什么类型,所以采用passby reference-to-const { f(a > b ? a : b); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。