我正在尝试在 QAbstractListModel 中使用自定义类,而 Q_DECLARE_METATYPE 根本不起作用!
为了测试问题出在哪里,我将代码简化如下:
#include <QMetaType>
#include <QVariant>
#include <QDebug>
typedef int x;
Q_DECLARE_METATYPE(x)
void main() {
QVariant v;
qDebug() << v.canConvert<x>();
}
并且输出仍然是错误的!
顺便说一句,我要实现的代码是这样的:
namespace ns{
class a {
public:
a(); //default constructor
a(const a&); //copy constructor
~a();
}
}
Q_DECALRE_METATYPE(ns::a);
当我尝试像这样重新实现 QAbstractListModel::data 时:
QList<ns::s> list; //this is actually a member field of the custom model.
QVariant MyListModel::data(const QModelIndex& index, int role) const {
Q_UNUSED(role)
return list.at(index.row());
}
编译器将报告和错误,如:
cannot convert const ns::a to QVariant::Type