如果使用 None ,添加init<void*>
重载将传递 NULL ,但我不确定这会如何影响极端情况下的其他 ctor。如果我遗漏了,我也没有得到您提到的相同的 None to string const& 转换init<void*>
。使用 Boost.Python 1.37 和 Python 2.6.2。
例子:
#include <iostream>
#include <string>
#include <boost/python.hpp>
struct A {
#define BODY { std::cout << __PRETTY_FUNCTION__ << '\n'; }
A() BODY
A(long) BODY
A(std::string const&) BODY
A(void* p) BODY
#undef BODY
};
BOOST_PYTHON_MODULE(ex) {
using namespace boost::python;
class_<A>("A")
.def(init<long>())
.def(init<std::string const&>())
.def(init<void*>())
;
}
>>> 进口前
>>> ex.A()
A::A()
<ex.A 位于 0x839bf7c 的对象>
>>> ex.A(42)
A::A(长整数)
<ex.A 位于 0x839bfcc 的对象>
>>> ex.A("abc")
A::A(const std::string&)
<ex.A 位于 0x839bf7c 的对象>
>>> ex.A(无)
A::A(无效*)
<ex.A 位于 0x839bfcc 的对象>
如果init<void*>
被排除在外:
>>> ex.A(无)
回溯(最近一次通话最后):
<module> 中的文件“<stdin>”,第 1 行
Boost.Python.ArgumentError:Python 参数类型在
A.__init__(A, NoneType)
与 C++ 签名不匹配:
__init__(_object*, std::string)
__init__(_object*, long)
__init__(_object*)