不知道有多少人注意VC++ 2005。在我们这里,有很多人对VC++ 2005很兴奋。有些人认为,VC++ 2005会把很大一部分程序员从C#阵营转到VC里:)
Stephen Toub的这篇文章是一个很好的总结。
Write Faster Code with the Modern Language Features of Visual C++ 2005
http://msdn.microsoft.com/msdnmag/issues/04/05/visualc2005/default.aspx
以Hello, World结尾吧。
C:\HelloWorld>more hello.cpp
int main()
{
System::Console::WriteLine("Hello, World!");
return 0;
}
C:\HelloWorld>cl hello.cpp /clr
ure
Microsoft (R) C/C++ Optimizing Compiler Version 14.00.40607.16
for Microsoft (R) .NET Framework version 2.00.40607.16
Copyright
Microsoft Corporation. All rights reserved.
hello.cpp
Microsoft (R) Incremental Linker Version 8.00.40607.16
Copyright
Microsoft Corporation. All rights reserved.
/out:hello.exe
/clrimagetype
ure
hello.obj
C:\HelloWorld>hello
Hello, World!