作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 main
中使用 boost::python::tuple 或 boost::python::dict 时功能,程序崩溃!
#define BOOST_PYTHON_STATIC_LIB
#include <boost/python.hpp>
#include <iostream>
#include <boost/python/tuple.hpp>
#include <boost/python/dict.hpp>
//using namespace std;
using namespace boost::python;
int main()
{
//tuple x;
//x = make_tuple(object(0),object(1));
dict x;
x["123"] = 3;
return 0;
}
.dll
中使用它们时,没事,怎么了?
最佳答案
有必要调用Py_Initialize()在使用任何 python 对象之前初始化解释器:
#define BOOST_PYTHON_STATIC_LIB
#include <boost/python.hpp>
#include <iostream>
#include <boost/python/tuple.hpp>
#include <boost/python/dict.hpp>
//using namespace std;
using namespace boost::python;
int main()
{
Py_Initialize();
dict x;
x["123"] = 3;
return 0;
}
#include <Python.h>
#include <dictobject.h>
int main(int argc, char *argv[])
{
Py_Initialize();
PyObject *d = PyDict_New();
PyDict_SetItemString(d, "123", PyLong_FromLong(3));
return 0;
}
PyDict_SetItemString
有电话到
PyUnicode_InternInPlace这基本上试图使用一个已经存在的字符串,否则它会创建一个新字符串(请记住,python 字符串是不可变的)。
Py_Initilize
时)发生在此函数内部,因为 Python 需要查询其运行时环境以检查字符串,但一旦未加载环境,它就会崩溃。
Py_Initilize
创建 .dll 时,因为它是在初始化期间已调用它的解释器中导入的。
关于boost-python - 如何在主函数中使用 boost::python::dict 或元组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45306616/
我是一名优秀的程序员,十分优秀!