为什么我需要外部变量的包含文件?

时间:2015-06-03 16:26:21

标签: c++ extern

我发现了这个: How do I use extern to share variables between source files? 它的主要答案对我来说很清楚。

但是我不明白为什么这会给我一个错误:

x.h:

#pragma once
namespace x {
   class A {
   public:  void func() const;
   };
   // extern A const a;  // cannot move this out of the include file !!!
   // extern int xi;     // fine to remove from here
}

--- main.cpp ---

#include "stdafx.h"
#include "x.h"

namespace x { extern int xi; extern const A a ; }  // instead of include file

extern int i;

int _tmain(int argc, _TCHAR* argv[])
{
   std::cout << i << std::endl; // works
   std::cout << x::xi << std::endl; // works

   x::a.func();  

    return 0;
}

--- x.cpp ---

#include "stdafx.h"
#include "x.h"

namespace x
{
   void A::func() const
   { std::cout << "x::A::func() called" << std::endl;  }

   const A a;  // Problem if const
   int xi = 234; // works
}
int i = 123;  // works

错误LNK2001:未解析的外部符号&#34;类x :: A const x :: a&#34; (?一个@ @@ X 3VA @ 1 @ B)
(VisualStudio 2013) 编译这两个文件很好,如果删除const关键字,或者将extern语句移动到include文件中,我可以构建并运行它。

感谢您的解释(不能相信编译器错误);)

1 个答案:

答案 0 :(得分:4)

命名空间范围const变量默认为内部链接(即,仅在该翻译单元内可见)。需要extern来覆盖默认值并为其提供外部链接(以便可以从其他翻译单元访问)。