Cython,关于向量(大小)构造函数的混淆

时间:2016-01-16 22:35:23

标签: python c++ cython

似乎定义vector变量的唯一方法是

cdef std::vector[int]* vec=new vector[int](<size>)

我认为这是正确的吗?这是示例代码,如果我最后编译并运行此Python崩溃(VS2015,Python 3.5)。

from libcpp.vector cimport vector
def test():
    cdef vector[int]* vec = new vector[int](5)
    cdef int i
    for i in range(5):
        print(vec[i])

    del vec

我想要一个具有一定大小的二维矢量。我该怎么做?它会是:

cdef std::vector[std::vector[int]]* vec=new vector[vector[int](<size1>)](<size2>)

1 个答案:

答案 0 :(得分:3)

虽然官方的例子显示了如何在堆上创建这些东西,但由于某种原因,它并不是真的有必要。此代码构建:

from libcpp.vector cimport vector                                                                                                                                                                          


ctypedef vector[int] int_vec                                                        
ctypedef vector[int_vec] int_vec_vec                                                


def test():                                                                         
    cdef int_vec v                                                                  
    v = int_vec(5)                                                                  

    cdef int_vec_ve vv                                                              
    vv = int_vec_vec(5, v)   

它构建了一个5X5的int向量载体。