c++ 中类型后面的 ^ 是什么意思?
我有一些 C++ 代码,其函数返回类型声明为 string^
或 IEnumerable
,这是什么意思?
编辑:c#->c++/cli
I have some c++ code with function return types declared as string^
or IEnumerable<String^>^
, what does that mean?
edits: c#->c++/cli
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这在 C# 中没有任何意义。您正在查看 C++/CLI 的源代码,而不是 C#。
请参阅http://en.wikipedia.org/wiki/C%2B%2B/ CLI 进行简要介绍。
克拉符号基本上意味着“这是 GC 跟踪的参考”。
It doesn't mean anything in C#. You're looking at source code for C++/CLI, not C#.
See http://en.wikipedia.org/wiki/C%2B%2B/CLI for a brief introduction.
The carat symbol basically means "this is a GC-tracked reference".
看起来像是托管 C++,而不是 C#。
^
表示托管引用类型。It seems like managed C++, not C#.
^
means managed reference type.没有什么。它在 C++ 中无效。它是 C++/CLI(一种独特的语言)的“托管引用”类型修饰符。
Nothing. It is not valid there in C++. It's a "managed reference" type modifier for C++/CLI, a distinct language.