According to the Cython documentation ,I write the following cython code as follows:
In [1]:%load_ext Cython
In [2]: %%cython
from libcpp.vector cimport vector
? cdef vector[int] *vec_int = new vector[int](10)
After compiling,the ipython generated the following error:
Error compiling Cython file:
------------------------------------------------------------
...
from libcpp.vector cimport vector
cdef vector[int] *vec_int = new vector[int](10)
^
------------------------------------------------------------
/Users/m/.ipython/cython/_cython_magic_a72abb419ccf1b31db9a1851b522a4bf.pyx:3:32: Operation only allowed in c++
what's wrong with my code?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…