"Cannot declare member function ...to have static linkage"错误

英文解释:

if you declare a method to be static in your .cc file.

The reason is that static means something different inside .cc files than in class declarations It is really stupid, but the keyword static has three different meanings. In the .cc file, the static keyword means that the function isn't visible to any code outside of that particular file.

This means that you shouldn't use static in a .cc file to define one-per-class methods and variables. Fortunately, you don't need it. In C++, you are not allowed to have static variables or static methods with the same name(s) as instance variables or instance methods. Therefore if you declare a variable or method as static in the class declaration, you don't need the static keyword in the definition. The compiler still knows that the variable/method is part of the class and not the instance.

翻译: 

如果在你的.cc文件,你声明的方法是静态的。静态意味着的.cc文件不同于类的声明。
但关键字static有三个不同的含义。
在.cc文件,静态关键字意味着该功能是任何代码该文件外部不可见的。这意味着,你不应该使用静态的.cc文件来定义一个每类方法和变量。
在C ++中,你不能有静态变量或静态方法在实例声明和实例方法中具有相同的名称(S)。
因此,如果你在类声明声明一个变量或方法为静态的,你不需要在定义static关键字在.cc文件。
编译器仍然知道该变量/方法是类的一部分,而不是该实例。


错误的:
 Foo.h:
class Foo 
{
   public: 
     static int bar();
};
Foo.cc:
static int Foo::bar() 
{
   // stuff
}
正确的:
 Foo.h:
class Foo 
{
   public: 
     static int bar();
};
Foo.cc:
int Foo::bar() 
{
   // stuff
}
这个也是正确的:
 Foo.h:
class Foo 
{
   public: 
     static int bar()
       {
         // stuff
       };
};
原文地址:https://www.cnblogs.com/friedCoder/p/12348824.html