c – 如何使用boost :: python将std :: pair暴露给python?

前端之家收集整理的这篇文章主要介绍了c – 如何使用boost :: python将std :: pair暴露给python?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用boost :: python将std :: pair暴露给python?当我暴露例如vector< string>我只想写:
class_<std::vector<std::string> >("StringVec")
    .def(vector_indexing_suite<std::vector<std::string> >())
;

但我不知道如何处理std :: pair.

解决方法

我找到了解决方案.暴露std :: pair的最简单的例子是:
class_<std::pair<int,int> >("IntPair")
    .def_readwrite("first",&std::pair<int,int>::first)
    .def_readwrite("second",int>::second);
原文链接:https://www.f2er.com/c/114856.html

猜你在找的C&C++相关文章