首页 > TAG信息列表 > tptr
Qt代码举例-单例模式
使用Qt方便的实现单例模式 单例类的实现,其中qCallOnce函数是确保该函数只执行一次: #ifndef SINGLETON #define SINGLETON #include <QtGlobal> #include <QScopedPointer> #include "call_once.h" template <class T> class Singleton { public: static T& instance(Qt代码举例-单例模式
使用Qt方便的实现单例模式 单例类的实现,其中qCallOnce函数是确保该函数只执行一次: #ifndef SINGLETON #define SINGLETON #include <QtGlobal> #include <QScopedPointer> #include "call_once.h" template <class T> class Singleton { public: static T& instance(