我很遗憾地问一个标题如此“有意义”的问题,但我只是无法理解编译器在抱怨什么,刚才的代码运行良好,我添加了一个额外的方法,一切都坏了。删除最后的更改并不能解决。

class NodeWrapper : public QObject {
    Q_OBJECT
    Q_ENUMS(NodeType NodeStatus)
    Q_PROPERTY(NodeType type READ type WRITE setType NOTIFY typeChanged)
    Q_PROPERTY(QString typeString READ typeString NOTIFY typeChanged)
    Q_PROPERTY(NodeStatus status READ status WRITE setStatus NOTIFY statusChanged)

public:
    NodeWrapper(QObject * parent = 0) : QObject(parent) { }

    enum NodeType {
        T_NODE,
        T_FOLDER
    };

    enum NodeStatus {
        S_OK,
        S_WARNING,
        S_ERROR
    };

    // type
    inline NodeType type() { return _type; }
    inline QString typeString() { return metaObject()->enumerator(0).key(type()); }
    inline void setType(NodeType v) {
        if (_type != v) {
            _type = v;
            emit typeChanged();
        }
    }
    // status
    inline NodeStatus status() { return _node.getStatus(); }
    inline void setStatus(NodeStatus v) {
        if (_node.getStatus() != v) {
            _node.setStatus(v);
            emit statusChanged();
        }
    }

signals:
    void typeChanged();
    void statusChanged();

private:
    NodeType _type;
    Node _node;
};

错误始于S_OK枚举的NodeStatus成员:
error: expected identifier before '(' token
         S_OK,
         ^
error: expected '}' before '(' token
error: expected ')' before numeric constant
         S_OK,
         ^
error: 'NodeType' does not name a type
     inline NodeType type() { return _type; }
            ^
error: 'metaObject' was not declared in this scope
     inline QString typeString() { return metaObject()->enumerator(0).key(type()); }
                                                     ^
error: 'type' was not declared in this scope
     inline QString typeString() { return metaObject()->enumerator(0).key(type()); }
                                                                               ^
...

最佳答案

猜想您在此定义之前无意中包含了<windows.h>,它通过#define将S_OK重新定义为数字,从而在枚举中导致编译错误。全局命名空间中的这种困惑情况是C兼容性的不幸结果,实际上,最安全的选择就是仅重命名字段(也许是S_SUCCESS?)

关于c++ - 什么破坏了此代码?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20198878/

10-10 12:38