我正在使用SWIG和ruby。我们可以使用SWIG使用
为Map生成包装器%include <std_map.i>
%template(IntMap) std::map<int,int>;
这在接口文件中。 用法示例
2.2.1 :001 > a = Example::IntMap.new
=> std::map,std::allocator< std::pair< int const,int > > > {}
2.2.1 :002 > a[1] = 2
=> 2
2.2.1 :003 > a[6] = -12
=> -12
2.2.1 :004 > a[4] = 92
=> 92
2.2.1 :005 > a
=> std::map,std::allocator< std::pair< int const,int > > > {1=>2,4=>92,6=>-12}
有没有办法直接从ruby定义数据类型 键的类型和相关的值是从ruby定义的? 例如
2.2.1 :002 > b["asr"] = 2
=> 2
2.2.1 :003 > b["tee"] = -12
=> -12
2.2.1 :004 > b["wetwe"] = 92
答案 0 :(得分:2)
在界面文件中使用
%include <std_map.i>
namespace std {
%template(Imap) map<swig::GC_VALUE, swig::GC_VALUE>;
}