Qt“私人插槽:"这是什么?

Qt quot;private slots:quot; what is this?(Qt“私人插槽:这是什么?)
本文介绍了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“私人插槽:"这是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)