考虑下面标准QT示例列表中稍加修改的birthday_party.h
example。
在下面的代码中,我添加了一个stub test()
函数,该函数只使用传递给它的指针打印人员的姓名。
#ifndef BIRTHDAYPARTY_H
#define BIRTHDAYPARTY_H
#include <QObject>
#include <QQmlListProperty>
#include "person.h"
class BirthdayParty : public QObject
{
Q_OBJECT
Q_PROPERTY(Person *host READ host WRITE setHost)
Q_PROPERTY(QQmlListProperty<Person> guests READ guests)
public:
BirthdayParty(QObject *parent = 0);
Person *host() const;
void setHost(Person *);
QQmlListProperty<Person> guests();
int guestCount() const;
Person *guest(int) const;
Q_INVOKABLE Person* invite(const QString &name);
Q_INVOKABLE void test( Person* p);
private:
Person *m_host;
QList<Person *> m_guests;
};
#endif // BIRTHDAYPARTY_H
test()
的定义是
void BirthdayParty :: test(Person* p)
{
QString qname = p->name();
std::cout << qname.toUtf8().constData() << std::endl;
}
我调用test的QML文件是
import QtQuick 2.0
import People 1.0
BirthdayParty {
host: Person { name: "Bob Jones" ; shoeSize: 12 }
guests: [
Person { name: "Leo Hodges" },
Person { name: "Jack Smith" },
Person { name: "Anne Brown" },
Person { name : "Gaurish Telang"}
]
Component.onCompleted:
{
test(guests[0])
}
}
现在上面的代码编译并运行得很好。但是,如果我在const
的参数列表中的Person* p
前添加test()
限定符
我在运行时从QML中得到错误! (即运行时barfs,如果标题和.cpp中的test都是void test(const Person* p)
)
我在运行时得到的错误是
qrc:example.qml:17: Error: Unknown method parameter type: const Person*
似乎我的错误与错误报告网站上报告的here错误相同。我正在使用Qt 5.10,Qt的最新版本。
修改
Person
和BirthdayParty
类型的注册如下
qmlRegisterType<BirthdayParty>("People", 1,0, "BirthdayParty");
qmlRegisterType<Person>("People", 1,0, "Person");
答案 0 :(得分:1)
好的,据我所知,Qt的最新版本已经将对象转换从QML更改为Qt,反之亦然。有时它能够使用指向对象,引用等的指针。它看起来现在它是不同的,你必须明确指定使用的类型。 在你的情况下,我想你应该在项目注册中添加以下行:
qRegisterMetaType<Person*>("const Person*");
是的,我建议你使用引用而不是指针,因为它消除了歧义。