Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 luabind 绑定以下函数?
void retByRef(int &a, int& b) { a = 10; b = 10 }
我正在尝试以下方法,但它仅适用于具有一个参数的函数
def("retByRef", &retByRef, pure_out_value(_1))
有没有办法为每个参数指定一个策略?
好的,我找到了一个可以用来添加策略的 + 运算符,所以
def("retByRef", &retByRef, pure_out_value(_1) + pure_out_value(_2))