Qt quot;private slots:quot; what is this?(Qt“私人插槽:这是什么?)
问题描述
我知道如何使用它,但它的语法让我很困扰.什么是私人插槽:"在做什么?
I understand how to use it, but the syntax of it bothers me. What is "private slots:" doing?
我以前从未在类定义中看到 private 关键字和 : 之间的东西.这里有什么奇特的 C++ 魔法吗?
I have never seen something between the private keyword and the : in a class definition before. Is there some fancy C++ magic going on here?
这里的例子:
#include <QObject>
class Counter : public QObject
{
Q_OBJECT
public:
Counter() { m_value = 0; }
int value() const { return m_value; }
public slots:
void setValue(int value);
...
推荐答案
Slots 是 C++ 的 Qt 特定扩展.它仅在通过 Qt 的预处理器元对象编译器 (moc) 发送代码后才进行编译.见 http://doc.qt.io/qt-5/moc.html 用于文档.
Slots are a Qt-specific extension of C++. It only compiles after sending the code through Qt's preprocessor, the Meta-Object Compiler (moc). See http://doc.qt.io/qt-5/moc.html for documentation.
正如弗兰克指出的,只有链接才需要 moc.额外的关键字是用标准预处理器#defined 去掉的.
As Frank points out, moc is only required for linking. The extra keywords are #defined away with the standard preprocessor.
这篇关于Qt“私人插槽:"这是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Qt“私人插槽:"这是什么?


基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01