Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个指向 c++ 中对象的指针向量,并希望通过列表将其公开给 python。到目前为止,我给 c++ 提供了一个 python 列表的参考。我认为指针不适合 python,所以我阅读了如何通过 (*obj) 它创建指向引用的指针。但是当我打电话时: myList.append((*obj)); python只是崩溃了。有人能告诉我如何正确地将我只有指针的对象放入 python 列表中,以便我以后可以操作该列表吗?
问候克里斯
好的,所以当没有为 boost::python 声明类型时会出现问题。!