“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

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

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

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/331356

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月1日 下午6:00
下一篇 2023年3月1日 下午6:01

相关推荐