- 官方说明:
Qt中有个宏Q_GLOBAL_STATIC 可以用来创建一个全局静态变量,下面看下官方文档的说明:
Q_GLOBAL_STATIC(Type, VariableName)
Creates a global and static object of type QGlobalStatic, of name VariableName and that behaves as a pointer to Type. The object created by Q_GLOBAL_STATIC initializes itself on the first use, which means that it will not increase the application or the library’s load time. Additionally, the object is initialized in a thread-safe manner on all platforms.
The typical use of this macro is as follows, in a global context (that is, outside of any function bodies):
Q_GLOBAL_STATIC(MyType, staticType)
官方文档说的意思是:
创建名为VariableName的QGlobalStatic类型的全局和静态对象,其行为类似于指向Type的指针。由Q_GLOBAL_STATIC创建的对象在第一次使用时对自身进行初始化,这意味着它不会增加应用程序或库的加载时间。此外,该对象在所有平台上都以线程安全的方式进行初始化。
-
使用方法:
官方的说明中就已经说了使用方法 :Q_GLOBAL_STATIC(MyType, staticType)
-
实例说明:
singleton.h
#ifndef SINGLETON_H
#define SINGLETON_H
#include <QGlobalStatic>
#define SINGLETON Singleton::instance()
class Singleton
{
public:
Singleton() {}
virtual ~Singleton() {}
public:
static Singleton* instance();
public:
void setValue(int value);
int getValue();
prive:
int m_value;
};
#endif // SINGLETON_H
singleton.cpp
#include "singleton.h"
Q_GLOBAL_STATIC(Singleton, theSingleton)
Rule* Singleton::instance()
{
return theSingleton();
}
void Singleton::setValue(int value)
{
m_value = value);
}
int Singleton::getValue()
{
return m_value;
}
调用方法:
如上面的单例在需要调用的地方可以用如下方法来赋值和取值:
Singleton::instance()->setValue(520);
int value = Singleton::instance()->getValue();
也可以直接用定义的宏来调用
SINGLETON->setValue(520);
int value = SINGLETON->getValue();
1.本站内容仅供参考,不作为任何法律依据。用户在使用本站内容时,应自行判断其真实性、准确性和完整性,并承担相应风险。
2.本站部分内容来源于互联网,仅用于交流学习研究知识,若侵犯了您的合法权益,请及时邮件或站内私信与本站联系,我们将尽快予以处理。
3.本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
4.根据《计算机软件保护条例》第十七条规定“为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。”您需知晓本站所有内容资源均来源于网络,仅供用户交流学习与研究使用,版权归属原版权方所有,版权争议与本站无关,用户本人下载后不能用作商业或非法用途,需在24个小时之内从您的电脑中彻底删除上述内容,否则后果均由用户承担责任;如果您访问和下载此文件,表示您同意只将此文件用于参考、学习而非其他用途,否则一切后果请您自行承担,如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。
5.本站是非经营性个人站点,所有软件信息均来自网络,所有资源仅供学习参考研究目的,并不贩卖软件,不存在任何商业目的及用途
暂无评论内容