一、C语言下const修饰全局变量默认是外部链接属性
在C语言下 const 默认是外部链接属性,
所以可以在其他文件中被使用
1.test.c
const int m_a = 1000;
2.main.c
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
extern const int m_a;
printf("%d\n", m_a);
system("pause");
return EXIT_SUCCESS;
}
二、C++下const修饰全局变量默认是内部链接属性
在C++下 const 默认是内部链接属性,所以只能本文件中使用;
要想在其他文件中使用,可以使用 extern 关键字来提高作用域
1.test.cpp
const int m_b = 1005;
extern const int m_c = 1005;
2.main.cpp
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
extern const int m_c;
cout << "m_c:" << m_c << endl;
system("pause");
return EXIT_SUCCESS;
}