在 C++/CLI 中声明函数时,变量前后的符号 ^ 和 * 有何含义?
例如:
假设我们有一个名为 MyClass 的类。
String^ MyClass::GetSomeInfoForExamplePuprs( int InfoNumber ) { }
或
静态字符串 ^GetOtherInfoExample() { }
或
String ^GetOtherInfoExample(object *Something) { 我在源代码中看到了它,但
无法弄清楚。
For example:
Let's say we have a class called MyClass.
String^ MyClass::GetSomeInfoForExamplePuprs( int InfoNumber )
{
}
or
static String ^GetOtherInfoExample()
{
}
or
String ^GetOtherInfoExample(object *Something)
{
}
I saw it in source code and can't figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
星号 (
*
) 表示指针。插入符号 (
^
) 不是 C++。它是 C++/CLI,表示托管句柄(即指向托管堆上的对象的“指针”)。The asterisk (
*
) indicates a pointer.The caret (
^
) is not C++. It is C++/CLI, and indicates a managed handle (that is, a "pointer" to an object on the managed heap).