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

C++const限定符

时间:2015-04-18 20:25:25      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

在C语言中我们使用#define宏定义的方式来处理符号常量。而在C++中有一种更好的处理符号常量的方法,那就是使用const关键字来修改变量声明和初始化。这种处理常量方式的好处不言而喻:如果程序在多处需要使用同一个值时,我们不妨将这个值定义为常量,这样在需要修改值时,只需修改常量即可,省去很多麻烦。

另外相比于C语言的宏定义方式,const限定符的优点在于:1、能够明确指定类型;2、可以使用C++的作用域规定将定义限定在特定的函数或文件中。以下代码:

#include<iostream>
#include<string>
#define mon ‘c‘
#define mos 1.5
#define mom "ch"
#define MAX 100000000
int main()
{
using std::cout;
using std::endl;
using std::string;

const int Month = 12;
const char Char = ‘c‘;
string Str = "hello";
cout<<Month<<endl;
cout<<Str<<endl;
cout<<Char<<endl;
cout<<mon<<endl<<MAX<<endl;

return 0;
}

C++const限定符

标签:

原文地址:http://www.cnblogs.com/smallnice/p/4437969.html

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