C-stilartige Umwandlungen mit /clr (C++/CLI)
Im Folgenden Thema gilt nur für die Common Language Runtime zu.
Wenn er mit CLR-Typen verwendet wird, versucht der Compiler, im C-Format an eine der Umwandlungen zuzuordnen, umgewandelt in der folgenden Reihenfolge aufgeführt werden:
const_cast
safe_cast
const_cast plus safe_cast
static_cast
static_cast plus const_cast
Wenn keiner der oben aufgeführten Umwandlungen gültig ist und der Typ des Ausdrucks und des Zieltyps CLR-Verweistypen zugeordnet sind, Umwandlungs im C-Format zu einer castclass RUNTIME Überprüfung (MSIL) - Anweisung.Andernfalls wird e-ähnlich Umwandlung in C-Format ungültig und gibt der Compiler einen Fehler eingestuft.
Hinweise
Ein E-ähnlich Umwandlung wird nicht empfohlen.Beim Kompilieren mit /clr (Common Language Runtime-Kompilierung), verwenden Sie safe_cast (Komponentenerweiterungen für C++).
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die auf const_castzuordnet.
// cstyle_casts_1.cpp
// compile with: /clr
using namespace System;
ref struct R {};
int main() {
const R^ constrefR = gcnew R();
R^ nonconstR = (R^)(constrefR);
}
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die auf safe_castzuordnet.
// cstyle_casts_2.cpp
// compile with: /clr
using namespace System;
int main() {
Object ^ o = "hello";
String ^ s = (String^)o;
}
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die auf safe_cast plus const_castzuordnet.
// cstyle_casts_3.cpp
// compile with: /clr
using namespace System;
ref struct R {};
ref struct R2 : public R {};
int main() {
const R^ constR2 = gcnew R2();
try {
R2^ b2DR = (R2^)(constR2);
}
catch(InvalidCastException^ e) {
System::Console::WriteLine("Invalid Exception");
}
}
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die auf static_castzuordnet.
// cstyle_casts_4.cpp
// compile with: /clr
using namespace System;
struct N1 {};
struct N2 {
operator N1() {
return N1();
}
};
int main() {
N2 n2;
N1 n1 ;
n1 = (N1)n2;
}
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die auf static_cast plus const_castzuordnet.
// cstyle_casts_5.cpp
// compile with: /clr
using namespace System;
struct N1 {};
struct N2 {
operator const N1*() {
static const N1 n1;
return &n1;
}
};
int main() {
N2 n2;
N1* n1 = (N1*)(const N1*)n2; // const_cast + static_cast
}
Im Folgenden Beispiel wird eine e-ähnlich Umwandlung an, die an eine Laufzeitüberprüfung zuordnet.
// cstyle_casts_6.cpp
// compile with: /clr
using namespace System;
ref class R1 {};
ref class R2 {};
int main() {
R1^ r = gcnew R1();
try {
R2^ rr = ( R2^)(r);
}
catch(System::InvalidCastException^ e) {
Console::WriteLine("Caught expected exception");
}
}
Das folgende Beispiel zeigt eine ungültige Umwandlung in C-Format an, die bewirkt, dass der Compiler eine Fehlermeldung ausgegeben.
// cstyle_casts_7.cpp
// compile with: /clr
using namespace System;
int main() {
String^s = S"hello";
int i = (int)s; // C2440
}
Anforderungen
Compileroption: /clr