问题描述
- C++ 类模板的静态私有内部类如何初始化?
-
搞了一个通宵了,百度过很多资料,始终解决不了这个问题。令我开始对C++的繁琐感到厌倦了。为了编译通过这么一个小问题,折腾这么长时间,真心觉得这种语言繁琐,刻板,效率低,过时了,让我这个6年的C++粉开始有点失望……#ifndef __SINGLETON__H__ #define __SINGLETON__H__ template <typename T> class Singleton { public: static T* GetInstance() { return m_pInstance; } protected: Singleton() {} ~Singleton() {} private: Singleton(const Singleton<T> &); Singleton& operator = (const Singleton<T> &); static T* m_pInstance; class Worker // 这里在类模板中定义了一个内部类 { public: Worker() { i = 0; if ( !m_pInstance ) {m_pInstance = new T();printf("ccc ");} } ~Worker() { if ( m_pInstance ) {delete m_pInstance;printf("ddd ");} } int i; }; static Worker worker; // 静态内部类成员,私有的。为了在类模板实例创建时自动调用此静态内部类的构造函数,销毁时自动调用此静态内部类的析构函数 }; template <typename T> T* Singleton<T>::m_pInstance = NULL; // 这句编译通过 template <typename T> Singleton<T>::Worker Singleton<T>::worker; // 就是这句编译不通过,纠结了一晚上了,浪费了许多时间,不知道该怎么写,求大神们指教。 #define SINGLETON_INIT(Type) friend Type* Singleton<Type>::GetInstance(); private: Type(); ~Type() #endif
错误输出:
警告 1 warning C4346: “Singleton::Worker”: 依赖名称不是类型
错误 2 error C2143: 语法错误 : 缺少“;”(在“Singleton::worker”的前面)错误 3 error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
解决方案
template <typename T> Singleton<T>::Worker Singleton<T>::worker; // 就是这句编译不通过,纠结了一晚上了,浪费了许多时间,不知道该怎么写,求大神们指教。
加一个typename就能够通过编译,改为:
template <typename T> typename Singleton<T>::Worker Singleton<T>::worker;
解决方案二:
c++中可以对类中私有成员中的静态变量初始化吗?
解决方案三:
template Singleton::Worker Singleton::worker;不是静态变量;
template Singleton::Worker 又是私有内嵌类型,于是外部界不可见,此定义非法。
解决方案四:
template <typename T> typename Singleton<T>::Worker Singleton<T>::worker;
解决方案五:
//protected: 修改为:
public:
Singleton() { printf("Singleton 构造。
"); }
~Singleton() { printf("Singleton 析构。 %x
",m_pInstance); }
template <typename T> typename Singleton<T>::Worker Singleton<T>::worker;
解决方案六:
template Singleton::Worker Singleton::worker;不是静态变量;
template Singleton::Worker 又是私有内嵌类型,于是外部界不可见,此定义非法。
时间: 2025-01-20 10:21:59