QMetaClassInfo Class

QMetaClassInfo 类提供类的附加信息。更多

头文件: #include <QMetaClassInfo>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core

公共函数

const char *name() const
const char *value() const

详细说明

类信息项是简单的 -值对,在源代码中使用Q_CLASSINFO() 指定。可使用name() 和value() 检索这些信息。例如

class MyClass
{
    Q_OBJECT
    Q_CLASSINFO("author", "Sabrina Schweinsteiger")
    Q_CLASSINFO("url", "http://doc.moosesoft.co.uk/1.0/")

public:
    ...
};

您可以在 Qt 应用程序中免费使用这一机制。

注意: 它也被 Active Qt, Qt D-Bus, Qt QmlQt Remote Objects模块也使用了该机制。使用这些模块时,可能会设置某些按键。

另请参见 QMetaObject

成员函数文档

const char *QMetaClassInfo::name() const

返回此项目的名称。

另请参阅 value()。

const char *QMetaClassInfo::value() const

返回此项目的值。

另请参阅 name()。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.