Swig、Python、C++:类型错误:在方法“Geodatabase_Open”中,参数 2 类型为“std::string”;
我是 C++ 和 SWIG 的新手。这是我的第一个项目。
我能够使用 distutils 成功构建我的 Python 扩展。但是,当我尝试我的对象时,我不断收到此错误。
获取 python 字符串并将其转换为 std::string 似乎存在转换问题。
我正在 Windows 7 上工作,使用 Visual Studio C++ 2008 Express
这是我的 swig 接口文件
/* swig interface file */
%module Geodatabase
%{
#include Geodatabase_helper.h
%}
namespace FileGeodatabase {
class Geodatabase {
public:
Geodatabase();
Geodatabase(std::string p);
~Geodatabase();
void Open(std::string p);
void Close();
};
}
I am new to C++ and SWIG. This is my first project.
I am able to successfully build my Python extension using distutils. However, when I try my object, I keep getting this error.
It seems that there is a conversion problem from getting the python string and transforming it into a std::string.
I am working on Windows 7, using Visual Studio C++ 2008 Express
Here is my swig interface file
/* swig interface file */
%module Geodatabase
%{
#include Geodatabase_helper.h
%}
namespace FileGeodatabase {
class Geodatabase {
public:
Geodatabase();
Geodatabase(std::string p);
~Geodatabase();
void Open(std::string p);
void Close();
};
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 swig 文档,使用
std::string< /code> 需要
%include "std_string.i"
。According to the swig documentation, using
std::string
requires%include "std_string.i"
.