将 .Net 引用 (%) 转换为本机 (&)

发布于 2024-11-13 11:04:42 字数 195 浏览 4 评论 0原文

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

乖乖哒 2024-11-20 11:04:42

现有的答案都不能正确处理输入/输出参数,更不用说任何高级用例了。

这应该适用于 other_func 返回后不保留引用的所有情况:

void test(int %tmp)
{
    pin_ptr<int> pinned_tmp = &tmp;
    other_func(*pinned_tmp);
}

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:

void test(int %tmp)
{
    pin_ptr<int> pinned_tmp = &tmp;
    other_func(*pinned_tmp);
}
ゞ花落谁相伴 2024-11-20 11:04:42

刚刚尝试过这个,效果很好:

  //in the C++ dll
void testFunc( int& n )
{
  n = 5;
}

  //in the CLI app
[DllImport( "my.dll", EntryPoint = "?exported_name_here",
   CallingConvention = CallingConvention::StdCall )]
void TestFunc( int& );

void test( int% tmp ) 
{
  int n;
  TestFunc( n );
  tmp = n;
}

Just tried this, works fine:

  //in the C++ dll
void testFunc( int& n )
{
  n = 5;
}

  //in the CLI app
[DllImport( "my.dll", EntryPoint = "?exported_name_here",
   CallingConvention = CallingConvention::StdCall )]
void TestFunc( int& );

void test( int% tmp ) 
{
  int n;
  TestFunc( n );
  tmp = n;
}
秋千易 2024-11-20 11:04:42
void your_function(int *);
void your_function2(int &);

void test(int %tmp)
{
    int tmp2;
    your_function(&tmp2);
    your_function2(tmp2);
    tmp=tmp2;
}
void your_function(int *);
void your_function2(int &);

void test(int %tmp)
{
    int tmp2;
    your_function(&tmp2);
    your_function2(tmp2);
    tmp=tmp2;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文