c++ 中的符号 ^% 是什么意思?项目

发布于 2024-10-17 04:46:28 字数 226 浏览 2 评论 0原文

我有一个c#项目AAA,项目类型为“类库”,在另一个c++项目中,它在引用中添加了AAA.DLL,在源代码中

void CTest:OnCallback(OperationCallbackInfo^% oci)

OperationCallbackInfo是AAA.dll中定义的

类问题是:参数中的符号^和%是什么意思?

i have a c# project AAA with the project type “class library", in another c++ project, it add the AAA.DLL in the reference, in the source code

void CTest:OnCallback(OperationCallbackInfo^% oci)

OperationCallbackInfo is class defined in AAA.dll

my question is: what does the symbol ^ and % mean in the parameter?

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

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

发布评论

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

评论(2

予囚 2024-10-24 04:46:28

这意味着您所拥有的根本不是真正的 C++,而是 C++/CLI,即 Microsoft .NET 语言的专有版本。

如果没记错的话,^% 是“跟踪引用”的语法。它的含义(至少几乎)与 C# 中的 ref 相同。从 C++ 的角度来看,它与将参数定义为指针的引用几乎相同。

It means what you have isn't really C++ at all, but C++/CLI, Microsoft's proprietary version of the language for .NET.

If memory serves, ^% is the syntax for a "tracking reference". It means (at least pretty much) the same as ref does in C#. From a C++ point of view, it's pretty much the same as defining a parameter as a reference to a pointer.

思念绕指尖 2024-10-24 04:46:28

根据这个问题,这是一个“句柄”,是托管 C++ 中的引用(类似于指针)。

According to this question, it's a "handle", which is a reference (similar to a pointer) in managed C++.

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