如何QVector
从 python 列表中派生一个?
我试过了
from PyQt4.QtCore import * #... is QVector herein?
[...]
v=QVector()
for l in list:
v.append(l)
关键问题是,我想使用一个期望QVector
作为输入的方法,其中传递一个简单的 python 列表会导致错误。而且name 'QVector' is not defined
。详情请参考https://gis.stackexchange.com/questions/212252/unexpected-bevaviour-of-qgslinevectorlayerdirector-makegraph-when-passing-li。
UPDATE
QtCore.PYQT_VERSION_STR
给了我'4.10.2'
,所以这不应该是版本问题。