第32390题 单选题
以下关于C++显式类型转换的用法,符合规范且不会出现未定义行为的是?

请判断下列C++代码片段中显式类型转换的使用是否合法安全。

A
int a = 10; double b = static_cast<double>(a);
B
const int c = 20; int* d = const_cast<int*>(&c); *d = 30;
C
class Base {}; class Derived : public Base {};
Base* e = new Base; Derived* f = dynamic_cast<Derived*>(e);
D
int g = 10; float* h = reinterpret_cast<float*>(&g); cout << *h << endl;
程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析