将 .Net 引用 (%) 转换为本机 (&)
如何将 C++/CLI int %tmp
转换为本机 C++ int &tmp
?
void test(int %tmp)
{
// here I need int &tmp2 for another pure C++ function call
}
How can I convert a C++/CLI int %tmp
to native C++ int &tmp
?
void test(int %tmp)
{
// here I need int &tmp2 for another pure C++ function call
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
现有的答案都不能正确处理输入/输出参数,更不用说任何高级用例了。
这应该适用于
other_func
返回后不保留引用的所有情况:Neither of the existing answers properly handle in/out parameters, let alone any advanced use cases.
This should work for all cases where
other_func
does not keep the reference after it returns:刚刚尝试过这个,效果很好:
Just tried this, works fine: