今天写代码的时候,需要多个文件使用同一个常量(全局的常量)。于是就把常量的声明放到一个头文件里头,常量的定义放到对应的源文件里头。
声明在constant.h里
extern const int Index;
定义在constant.cpp里
int index = 2;
在其他文件想要使用Index这个全局变量就在其他文件里包含constant,即#include "constant.h"
参考:C/C++中extern关键字详解 - 小天_y - 博客园 (cnblogs.com)
标签:Index,constant,常量,int,关键字,extern From: https://www.cnblogs.com/littleheadache/p/16855831.html