由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - What is this?
相关主题
新手问个弱问题c++/.net
图象处理求助Need help on C++ code
C++.net 和C++ 有什么不同? 对了,C++赤裸裸的抄袭C#,
what does string^ str mean?c++的高级的东东在实际项目开发中到底有没有很大的应用阿?
问一个.NET与C++的问题C++的库
有必要学一学MFC吗?弱问:VS.net里面VC++工程的"Windows窗体应用程序"是什么类库?
C#程序调用Windows C++ DLL的问题c++程序员现在该何去何从?
关于反编译请教如果想做一个有gui界面的应用程序,用什么语言比较好?
相关话题的讨论汇总
话题: what话题: pointers话题: managed话题: punctuator话题: handles
进入Programming版参与讨论
1 (共1页)
P********e
发帖数: 2610
1
array^ arr;
what does this ^ mean
s***e
发帖数: 793
2
typo?
just kidding

【在 P********e 的大作中提到】
: array^ arr;
: what does this ^ mean

K*****n
发帖数: 65
3
My guess it is C++ managed code. Quote
void _tmain()
{
//The ^ punctuator represents a handle
String^ str = "Hello World";
Console::WriteLine(str);
}
The ^ punctuator (pronounced as cap) represents a handle to a managed object
. According to the CLI specification a handle is a managed object reference.
Handles are the new-syntax equivalent of __gc pointers in the MC++ syntax.
Handles are not to be confused with pointers and are totally different in
nature from pointers.
1 (共1页)
进入Programming版参与讨论
相关主题
请教如果想做一个有gui界面的应用程序,用什么语言比较好?问一个.NET与C++的问题
C++/CLI有人用吗?有必要学一学MFC吗?
如果不用很高级的feature,C++/Scala是否值得一战?C#程序调用Windows C++ DLL的问题
桌面应用程序,GUI用什么?关于反编译
新手问个弱问题c++/.net
图象处理求助Need help on C++ code
C++.net 和C++ 有什么不同? 对了,C++赤裸裸的抄袭C#,
what does string^ str mean?c++的高级的东东在实际项目开发中到底有没有很大的应用阿?
相关话题的讨论汇总
话题: what话题: pointers话题: managed话题: punctuator话题: handles