How to convert QList<T> to QVariant?

妖精的绣舞 提交于 2019-12-13 16:13:34

问题


I can't find a way to convert my QList<T> to a QVariant.

There's a constructor QVariant(const QList<QVariant> &val), but no constructor for QList<T> , is it possible to convert directly a QList<T> ?


回答1:


Example

QList<int> ints{1,2,3};
QVariant var = QVariant::fromValue<QList<int>>(ints);


来源:https://stackoverflow.com/questions/44436386/how-to-convert-qlistt-to-qvariant

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!