int ^
-
Es ist spät und heiß. Daher meine Frage, was int ein int ^?
// mcpp_nullptr_2.cpp // compile with: /clr /LD void f(int *){} void f(int ^){} void f_null() { f(nullptr); // C2668 // try one of the following lines instead f((int *) nullptr); f((int ^) nullptr); }
Ist das MS speziell?
Quelle:
http://msdn.microsoft.com/en-us/library/vstudio/4ex65770(v=vs.120).aspx
-
Dieser Thread wurde von Moderator/in SeppJ aus dem Forum C++ (auch C++0x und C++11) in das Forum C++/CLI mit .NET verschoben.
Im Zweifelsfall bitte auch folgende Hinweise beachten:
C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?Dieses Posting wurde automatisch erzeugt.
-
Tomahawk schrieb:
Ist das MS speziell?
Ja, das ist C++/CLI, genauer ein Managed Handle auf int.