gpt4 book ai didi

c++ - 该代码标准是否合规?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:21:44 25 4
gpt4 key购买 nike

所以代码是

class A
{
public:
int i;
A(){
i = 5;
}
};
class B : public A
{
public:
void someFunc();
};

class C
{
A myObj;
public:
void func(){
B* foo = reinterpret_cast<B*>(&myObj);
foo->someFunc();
}
};

假设类将保持原样并且永远不会改变,那么 reinterpret_cast 的这种使用是否正确(我认为不是)?如果不是,那么这里违反了 C++ 标准的哪些具体部分(您可以使用任何版本)?

最佳答案

您的程序确实会诱发 UB。 §9.3.1/2:

If a non-static member function of a class X is called for an object that is not of type X, or of a type derived from X, the behavior is undefined.

A 不是 B 类型或从 B 派生的类型。

关于c++ - 该代码标准是否合规?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29990849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com