C++定义常量两种方式
#define 宏常量:
#define 常量名 常量值
- 通常在文件上方定义,表示一个常量
#include<iostream>
//宏常量
#define day 7
using namespace std;
int main() {
cout << "一周有" << day << "天"<< endl;//一周有7天
system( "pause");
return 0;
}
- 通常在文件上方定义,表示一个常量
const修饰的变量
const 数据类型 常量名 = 常量值
- 通常在变量定义前加关键字const,修饰该变量为常量,不可修改
#include<iostream> using namespace std; int main() { //const修饰的变量,为常量 const int day = 7; cout << "一周有" << day << "天"<< endl; system( "pause"); return 0; }
- 通常在变量定义前加关键字const,修饰该变量为常量,不可修改