我无法重构“功能”的定义。但需要在测试课中使用。
使用了Qt 4.8。以下代码返回1,但应为2。
如何在测试类中使用typedef枚举?
#include <QDebug>
#include <QObject>
#include <QMetaEnum>
typedef enum {
READ = 0x30,
AUTH = 0x40,
EJECT = 0x55
}__attribute__ ((packed)) function;
class test : public QObject
{
Q_OBJECT
public:
explicit test(QObject *parent = 0){
qDebug() << "Enums count=" << this->metaObject()->enumeratorCount();
qDebug() << "Functions=" << this->metaObject()->enumerator( this->metaObject()->indexOfEnumerator("function") ).keyCount();
qDebug() << "worked=" << this->metaObject()->enumerator( this->metaObject()->indexOfEnumerator("worked") ).keyCount();
}
Q_ENUMS(function)
enum worked{forexample};
Q_ENUMS(worked)
};
最佳答案
typedef
构造在C++代码中不是必需的,它也适用于类外部的枚举。但这不是你的问题。枚举必须是要与metaObject一起使用的QObject
子类的成员,正如您已经使用enum worked
测试过的那样。
更多详细信息:http://doc.qt.io/qt-4.8/qobject.html#Q_ENUMS