本随笔解决 Python使用ctypes 调用c++dll 字符串返回类型函数,在python中显示为数字;原文解决方案见so:
1. 据说无关python的ctypes的事。
2. C++定义导出函数的时候,需要使用const char *,而不能使用string返回类型,如:
extern "C"
const char *return_string(char* name){
cout<<strlen(name)<<endl;
cout<<name<<endl;
s += name;
}
3. 上面的函数定义也看到了,在函数体中使用string临时变量的话,需要static string str这样的形式定义,声明为静态变量。
4. 给string类型临时变量赋值的时候,必须使用+=,而不是=。
5. 最后往出传递的话,使用s.c_str()做个转换。