C 风格的强制转换和 /clr (C++/CLI)

以下主题仅适用于公共语言运行时。

当使用与 CLR 类型,编译器尝试映射 C 样式转换为按以下顺序下面列出的,其中一个转换:

  1. const_cast

  2. safe_cast

  3. safe_cast 以及 const_cast

  4. static_cast

  5. static_cast 以及 const_cast

如果列表的转换任何上面不是有效的,因此,并且,如果该表达式的类型和目标类型是 CLR 引用类型, C 样式转换映射到运行时 CHECK (castclass MSIL 指令)。否则, c. 样式转换被视为无效,并且编译器将发出错误。

备注

建议不要对. 样式转换。使用编译时 /clr(公共语言运行时编译),请使用 safe_cast(C++ 组件扩展)

下面的示例显示一个. 样式转换映射到该 const_cast。

// cstyle_casts_1.cpp
// compile with: /clr
using namespace System;

ref struct R {};
int main() {
   const R^ constrefR = gcnew R();
   R^ nonconstR = (R^)(constrefR); 
}

下面的示例显示一个. 样式转换映射到该 safe_cast

// cstyle_casts_2.cpp
// compile with: /clr
using namespace System;
int main() {
   Object ^ o = "hello";
   String ^ s = (String^)o;
}

下面的示例显示一个. 样式转换映射到该 safe_cast 以及 const_cast。

// 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");
   }
}

下面的示例显示一个. 样式转换映射到该 static_cast。

// 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;
}

下面的示例显示一个. 样式转换映射到该 static_cast 以及 const_cast。

// 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
}

下面的示例显示一个. 样式转换映射到一个运行时检查。

// 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");
   }
}

下面的示例演示一个无效 C 样式转换,导致编译器将发出错误。

// cstyle_casts_7.cpp
// compile with: /clr
using namespace System;
int main() {
   String^s = S"hello";
   int i = (int)s;   // C2440
}

要求

编译器选项: /clr

请参见

概念

适用于运行时平台的组件扩展