2种方法:
#define预处理器
const关键字
实例:
#define LENGTH 10
const int LENGTH = 10;
把常量定义为大写字母形式,是一个很好的编程实践!
参考文章:
文章