C++ 链接时提示类的静态变量未定义,“undefined reference to”错误

今天在工程中写了一个单例,但是调用时,总是报静态变量未定义的错误。

// A.h

class FWindowsLoader : public FPhysicalLoader{
private:
    FWindowsLoader(){}
    static FWindowsLoader* singleFWindowsLoader;
public:
    static FWindowsLoader* GetFWindowsLoader();
}


//A.cpp

FWindowsLoader* FWindowsLoader::GetFWindowsLoader(){
    if(singleFWindowsLoader == nullptr){
        static FWindowsLoader staticWinsdowsLoader;
        singleFWindowsLoader = &staticWinsdowsLoader;
    }
    return singleFWindowsLoader;
}

编译器在链接时,报 “undefined reference to singleFWindowsLoader” 错误。

调试很久,才想起来类的静态变量 singleFWindowsLoader 并未进行定义。

因为类的声明并不会进行内存空间的分配。所以类的静态成员无法在类声明中定义。因此,类的静态成员需要类内声明,类外定义。并且注意定义尽量不要出现在头文件中,以免造成重复定义。

// A.cpp

FWindowsLoader* FWindowsLoader::singleFWindowsLoader = nullptr;

FWindowsLoader* FWindowsLoader::GetFWindowsLoader(){
    if(singleFWindowsLoader == nullptr){
        static FWindowsLoader staticWinsdowsLoader;
        singleFWindowsLoader = &staticWinsdowsLoader;
    }
    return singleFWindowsLoader;
}

在A.cpp中添加 singleFWindowsLoader 的定义。编译通过。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值