打电话给c++带有来自 cli 的参考参数的函数

发布于 2024-08-25 14:04:16 字数 299 浏览 5 评论 0原文

非托管函数(纯c++,如果重要的话):

 void fooC(float& result);

我将包装器定义为(托管包装器,c++\cli):

void foo(float% result) //managed interface, need to pass result back to caller
{
      fooC(???);//how to call unmanaged function?
}

如何在包装器中传递引用参数?

The unmanaged function(pure c++, if that matters):

 void fooC(float& result);

I define the wrapper as (managed wrapper, c++\cli):

void foo(float% result) //managed interface, need to pass result back to caller
{
      fooC(???);//how to call unmanaged function?
}

how to pass reference parameter in the wrapper?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

颜漓半夏 2024-09-01 14:04:16

您无法将跟踪引用转换为非托管引用或指针。当传递的浮点数是对象中的字段时,垃圾收集器会造成严重破坏。您需要使用临时的:

  void foo(float% result) { 
    float temp;
    fooC(temp); 
    result = temp;
  }

You can't convert a tracking reference to an unmanaged reference or pointer. The garbage collector would cause havoc when the passed float is a field in an object. You'll need to use a temporary:

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