Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Qt 并遇到类层次结构,其中基类(有时是抽象类)包含 Q_PROPERTY 宏;派生类会从其基类继承每个 Q_PROPERTY 吗?
是的,它会的。您可以在调试器中轻松检查这一点:只需在视图/场景存在后设置一个断点并检查您的 QObject 实例之一。您可以从您的基类访问对象的元数据和私有数据。