定义“功能”我无法重构。但需要在测试类中使用。 使用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)
};
答案 0 :(得分:1)
C ++代码中不需要typedef
构造,这也适用于类之外的枚举。但这不是你的问题; enum必须是要与metaObject一起使用的QObject
子类的成员,因为您已经使用enum worked
进行了测试。