编译器警告(等级 1)C4946

reinterpret_cast 在相关类之间使用:“class1”和“class2”

不要使用 reinterpret_cast 在相关类型之间强制转换。 请改用 static_cast;或者针对多态类型使用 dynamic_cast

默认情况下,此警告处于关闭状态。 有关详细信息,请参阅 Compiler Warnings That Are Off by Default

以下代码示例生成 C4946:

// C4946.cpp
// compile with: /W1
#pragma warning (default : 4946)
class a {
public:
   a() : m(0) {}
   int m;
};

class b : public virtual a {
};

class b2 : public virtual a {
};

class c : public b, public b2 {
};

int main() {
   c* pC = new c;
   a* pA = reinterpret_cast<a*>(pC);   // C4946
   // try the following line instead
   // a* pA = static_cast<a*>(pC);
}