自定义类无法追加的qlist

时间:2016-02-07 02:07:48

标签: c++ macos qt5

我在这里看到了其他问题,但它们处理指针或qobject派生类,所以它们看起来并不相关。

我试图将值附加到自定义类的qlist中,这是类

class matchPair
{
public:
    matchPair(int a=0, int b=0)
        : m_a(a)
        , m_b(b)
    {}
    int a() const { return m_a; }
    int b() const { return m_b; }

    bool operator<(const matchPair &rhs) const { return m_a < rhs.a(); }
//    matchPair& operator=(const matchPair& other) const;

private:
    int m_a;
    int m_b;
};

class videodup
{
public:
    videodup(QString vid = "", int m_a = 0, int m_b = 0);
    ~videodup() {}
    QString video;
    bool operator==(const QString &str) const { return video == str; }
//  videodup& operator=(QString vid, int m_a, int m_b);
    QList<matchPair> matches;
};

struct frm
{
    QString file;
    int position;
    cv::Mat descriptors;
    QList<videodup> videomatches;
};
QList<frm> frames;

,失败的行是:

frame.videomatches.at( frame.videomatches.indexOf(vid) ).matches.append(pair);

我得到的错误是:

/usr/local/Cellar/qt5/5.5.1_2/lib/QtCore.framework/Headers/qlist.h:191: candidate function not viable: 'this' argument has type 'const QList<matchPair>', but method is not marked const
    void append(const T &t);
         ^

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您正在尝试将值附加到const QList<T>,这意味着您的QList<T>是常量,即不可变。仔细观察,错误显示this has type const QList<matchPair>,您只能在const对象上调用const方法,而append()在语法和语义上显然不是const 。将QList<matchPair>修改为const

编辑2:

仔细观察代码,这是罪魁祸首,确实:

frame.videomatches.at( frame.videomatches.indexOf(vid) ).matches.append(pair);
                   ^^

QList<T>::at()返回const T&,这会导致我上面描述的问题。使用QList<T>::operator[]() insdead,它具有返回const TT值的重载。

编辑:

但是,这个编译器的品牌和版本是什么?我无法通过在const类对象上调用非const方法来重现g ++中的此错误消息,包括模板化和非模板化(我收到错误,但它是&#39 ;措辞不同)。