Swig 通过 ref / out 从 C# 传递 Std::vector 到 C++
Swig Pass Std::vector by ref / out from C# to C++
给定 C++ 函数
void Foo(unsigned int _x, unsigned int _y, std::vector< unsigned int > &_results)
并将 Swig 接口文件映射 std::vector 以在 C# 中键入 VectorUInt32
%include "std_vector.i"
namespace std {
%template(VectorUInt32) vector<unsigned int>;
};
我在 C# 代码中得到以下结果:
public static void Foo(uint _x, uint _y, VectorUInt32 _results)
太棒了,但我真正希望的是:
public static void Foo(uint _x, uint _y, out VectorUInt32 _results)
有谁知道如何将 std::vector 从 C++ 映射到 C# 作为 ref 或 out 参数?
你的 Whosebug 没有答案,真可耻!
无论如何,答案是,如果其他人有兴趣...如果您在 C# 中创建 VectorUInt32 类型并将其传递给 C++ 函数,它是通过引用传递的,因此可以在 C++ 中修改而无需引用或出参数。
界面变为:
C++
void Foo(unsigned int _x, unsigned int _y, std::vector< unsigned int > &_results)
接口文件
%include "std_vector.i"
namespace std {
%template(VectorUInt32) vector<unsigned int>;
};
C#
public static void Foo(uint _x, uint _y, VectorUInt32 _results)
用法
// Create and pass vector to C++
var vec = new VectorUInt32();
Foo(x, y, vec);
// do something with vec, its been operated on!
给定 C++ 函数
void Foo(unsigned int _x, unsigned int _y, std::vector< unsigned int > &_results)
并将 Swig 接口文件映射 std::vector 以在 C# 中键入 VectorUInt32
%include "std_vector.i"
namespace std {
%template(VectorUInt32) vector<unsigned int>;
};
我在 C# 代码中得到以下结果:
public static void Foo(uint _x, uint _y, VectorUInt32 _results)
太棒了,但我真正希望的是:
public static void Foo(uint _x, uint _y, out VectorUInt32 _results)
有谁知道如何将 std::vector 从 C++ 映射到 C# 作为 ref 或 out 参数?
你的 Whosebug 没有答案,真可耻!
无论如何,答案是,如果其他人有兴趣...如果您在 C# 中创建 VectorUInt32 类型并将其传递给 C++ 函数,它是通过引用传递的,因此可以在 C++ 中修改而无需引用或出参数。
界面变为:
C++
void Foo(unsigned int _x, unsigned int _y, std::vector< unsigned int > &_results)
接口文件
%include "std_vector.i"
namespace std {
%template(VectorUInt32) vector<unsigned int>;
};
C#
public static void Foo(uint _x, uint _y, VectorUInt32 _results)
用法
// Create and pass vector to C++
var vec = new VectorUInt32();
Foo(x, y, vec);
// do something with vec, its been operated on!