gpt4 book ai didi

c++ - C++ 中 QML this 的类型是什么?

转载 作者:搜寻专家 更新时间:2023-10-31 01:30:01 25 4
gpt4 key购买 nike

我想将 QML 项引用传递给 C++。它明确地使用 id 工作:

Item {
id: qmlitem
x: CppObj.getValue(qmlitem)
}

// c++
int getValue(QObject * qmlItem) {
return 0;
}

如果我通过这个:

Item {
x: CppObj.getValue(this)
}

QObject * qmlItem 为 0x0。

如果我更换

int getValue(QObject * qmlItem) 

int getValue(void * qmlItem)

qmlItem 不是 0x0 - 它有一个值但属于哪种类型?是否可以从中获取 QObject*?

最佳答案

在QML中,this的值为currently undefined .将其传递给 C++ 不会产生任何有意义的结果。无论其内容是什么,它都不是对当前 QML 项的引用。因此,只需坚持您的第一个解决方案并传递一个 ID。

关于c++ - C++ 中 QML this 的类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48706985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com