标签:style blog http 文件 2014 问题 ar c++
C++的水比较深,之前我一直以为C++的全局变量会像其他语言一样,非常简单只要在头文件中,定义一个变量即可,比如下面的test.h:
#ifndef _TEST_H #define _TEST_H int a = 10; #endif
又拿起《C++ Primer》看了下,发现正确的应该这么写:
test.h
#ifndef _TEST_H #define _TEST_H extern int a; #endif
#include "test.h" int a = 10;
extern int a = 10;//初始化了值,是定义 double b; //没有extern关键词,是定义
对于头文件不应该包含定义这一规则,有3个例外。头文件可以定义类,值在编译时就已知道的const对象和inline函数。
标签:style blog http 文件 2014 问题 ar c++
原文地址:http://blog.csdn.net/fox64194167/article/details/37696763