cppyy传递数组到python的C ++函数

时间:2012-06-15 02:48:18

标签: pypy

我用C ++编写了一个简单的排序函数,它的声明是void sort(int *,int) 我使用cppyy在python函数中使用C ++扩展,文件告诉我当我需要传递内置数据指针类型时我可以使用array.array。 但它总是提示:

Traceback (most recent call last):

  File "app_main.py", line 51, in run_toplevel

  File "test.py", line 13, in <module>

    m.sort(ai, 1)

TypeError: none of the 1 overloaded methods succeeded. Full details:

  void MyClass::sort(int*, int) =>

    TypeError: no converter available

这是我写的python代码:

#coding=utf8
import cppyy
import time
from array import array

cppyy.load_reflection_info("libMyClassDict.so")

MyClass = cppyy.gbl.MyClass
m = MyClass()
start = time.time()

m = MyClass()

for i in xrange(10000000):
    ai = array('i', [23])
    m.sort(ai, 1)
    m.SetMyInt(312, 2315, 2135, 13, 3251, 54, 2134, 3253, 134, 3251);

end = time.time()
print end - start

任何人都可以解决我的问题吗?

0 个答案:

没有答案