码迷,mamicode.com
首页 > 编程语言 > 详细

关于C++ 单例 编译器 报错问题的解决

时间:2014-11-16 18:40:26      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   on   问题   log   as   


Singleton.h
class Singleton{

public:
    static Singleton* getInstance(){
        if(instance == NULL){
            instance = new Singleton();
        }
        return instance;
    }

private:
    static Singleton * instance;
    Singleton(){};

};
Singleton* Singleton::instance = NULL;
main.cpp

int main(){
Singleton * instance = NULL;
instance = Singleton::getInstance();
    return 0;
}
原因在于仅声明了Singleton类的静态变量instance,但缺少变量定义,造成“无法解析的符号”错误。

关于C++ 单例 编译器 报错问题的解决

标签:style   blog   color   sp   div   on   问题   log   as   

原文地址:http://www.cnblogs.com/jasonkent27/p/4101627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!