码迷,mamicode.com
首页 > 编程语言 > 详细

Effective C++ Item 2 尽量以const, enum, inline 替换 #define

时间:2014-05-24 18:29:52      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   tar   

本文为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);
}



Effective C++ Item 2 尽量以const, enum, inline 替换 #define,布布扣,bubuko.com

Effective C++ Item 2 尽量以const, enum, inline 替换 #define

标签:style   class   blog   c   code   tar   

原文地址:http://blog.csdn.net/zhengsenlie/article/details/26614411

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!