我如何使用 c++ 迭代 python 中的地图通过 swig 创建的扩展

发布于 2024-12-29 08:05:30 字数 120 浏览 0 评论 0原文

在我的 C++ 扩展中,我有一个名为的公共方法: 地图 getMap();

我已将头文件包含到 Example.i 接口文件中。

但是当我在 python 中时,如何通过地图进行交互呢?

In my c++ extension i have a public method called:
map getMap();

I have include the header files in to the Example.i interface file.

But how can i interate thru the map hwhen i am in python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

度的依靠╰つ 2025-01-05 08:05:30

工作示例(Windows)。重要的一点是,您必须使用 %template 语句实例化要公开的每个模板(请参阅 xi 文件),并为其分配一个合法的 Python 名称。

x.cpp

#define X_EXPORTS
#include "x.h"

X_API mapii_t getMap()
{
    mapii_t m;
    m[1]=2;
    m[4]=8;
    m[5]=10;
    return m;
}

x.h

#pragma once

#ifdef X_EXPORTS
#define X_API __declspec(dllexport)
#else
#define X_API __declspec(dllimport)
#endif

#include <map>
typedef std::map<int,int> mapii_t;
X_API mapii_t getMap();

x.i

%module x

%{
    #include "x.h"
%}

// Let swig understand __declspec and other "window-isms"
%include <windows.i>
%include <std_map.i>

// instantiate template and give it a Pythonic name.
%template(mapii_t) std::map<int,int>;
%include "x.h"

makefile

_x.pyd: x_wrap.cxx x.dll
    cl /LD /W3 /MD /EHsc /IC:\Python27\include x_wrap.cxx -link /OUT:_x.pyd /libpath:C:\Python27\libs x.lib

x.dll: x.cpp
    cl /LD /W4 /MD /EHsc x.cpp

x_wrap.cxx: x.i
    swig -c++ -python x.i

用法:

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import x
>>> a=x.getMap()
>>> a
<x.mapii_t; proxy of <Swig Object of type 'std::map< int,int > *' at 0x022C4200> >
>>> for k,v in a.items():
...  print k,v
...
1 2
4 8
5 10

Working example (Windows). An important point is you must instantiate each template you want to expose with the %template statement (see x.i file) and assign it a legal Python name.

x.cpp

#define X_EXPORTS
#include "x.h"

X_API mapii_t getMap()
{
    mapii_t m;
    m[1]=2;
    m[4]=8;
    m[5]=10;
    return m;
}

x.h

#pragma once

#ifdef X_EXPORTS
#define X_API __declspec(dllexport)
#else
#define X_API __declspec(dllimport)
#endif

#include <map>
typedef std::map<int,int> mapii_t;
X_API mapii_t getMap();

x.i

%module x

%{
    #include "x.h"
%}

// Let swig understand __declspec and other "window-isms"
%include <windows.i>
%include <std_map.i>

// instantiate template and give it a Pythonic name.
%template(mapii_t) std::map<int,int>;
%include "x.h"

makefile

_x.pyd: x_wrap.cxx x.dll
    cl /LD /W3 /MD /EHsc /IC:\Python27\include x_wrap.cxx -link /OUT:_x.pyd /libpath:C:\Python27\libs x.lib

x.dll: x.cpp
    cl /LD /W4 /MD /EHsc x.cpp

x_wrap.cxx: x.i
    swig -c++ -python x.i

Usage:

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import x
>>> a=x.getMap()
>>> a
<x.mapii_t; proxy of <Swig Object of type 'std::map< int,int > *' at 0x022C4200> >
>>> for k,v in a.items():
...  print k,v
...
1 2
4 8
5 10
作业与我同在 2025-01-05 08:05:30

您应该能够像使用 python 字典一样使用地图。它支持 iteritems、iterkeys 等。您的代码中是否有 %include "std_map.i" ?你有 %template 语句吗?由于您没有显示代码,因此很难猜测。

You should be able to use the map just like you would a python dict. It supports iteritems, iterkeys, etc. Do you have a %include "std_map.i" in your code? do you have a %template statement? It's pretty tough to guess since you didn't show your code.

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