Swig、Python、C++:类型错误:在方法“Geodatabase_Open”中,参数 2 类型为“std::string”;

发布于 2024-11-09 12:50:36 字数 520 浏览 5 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亚希 2024-11-16 12:50:36

根据 swig 文档,使用 std::string< /code> 需要 %include "std_string.i"

%module example
%include "std_string.i"

std::string foo();
void        bar(const std::string &x);

According to the swig documentation, using std::string requires %include "std_string.i".

%module example
%include "std_string.i"

std::string foo();
void        bar(const std::string &x);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文