- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
本书The c++ programming language有关于 dynamic_cast 的部分,我不确定我是否理解正确。
The purpose of dynamic_cast is to deal with the case in which the correctness of the conversion cannot be determined by the compiler. In that case, dynamic_cast(p) looks at the object pointed to by p (if any). If that object is of class T or has a unique base class of type T, then dynamic_cast returns a pointer of type T* to that object; otherwise, nullptr is returned. If the value of p is nullptr, dynamic_cast(p) returns nullptr. Note the requirement that the conversion must be to a uniquely identified object. It is possible to construct examples where the conversion fails and nullptr is returned because the object pointed to by p has more than one subobject representing bases of type T.
“是否可以构建转换失败并返回 nullptr 的示例,因为对象指向to by p has more than one subobject representing bases of type T"意思是这样的?
class a {
public:
a() { }
};
class b : public a {
public:
b() { }
};
class z : public a, public b {
public:
z() { }
};
void f(z* p) {
a* x = dynamic_cast<a*>(p); // ambiguous
}
还有一个,这是摘自书本:
class Component : public virtual Storable { /* ... */ };
class Receiver : public Component { /* ... */ };
class Transmitter : public Component { /* ... */ };
class Radio : public Receiver, public Transmitter { /* ... */ };
The ambiguity for a pointer to a Radio object is not in general detectable at compile time.This kind of run-time ambiguity detection is needed only for virtual bases. For ordinary bases, there is always a unique subobject of a given cast (or none) when downcasting (that is, toward a derived class; §22.2). The equivalent ambiguity for virtual bases occurs when upcasting (that is, toward a base), but such ambiguities are caught at compile time.
我完全不明白这个。这是什么意思“对于普通基地,给定 Actor 总是有一个独特的子对象”?我知道如果基不是虚拟的,将为从它派生的每个类创建一个子对象。但就转换而言,我只是在上面的例子中造成了歧义错误。而“向上转换时会发生虚拟基础的等效歧义”,这是什么意思?虚拟基地可以模棱两可吗?谁能解释得更清楚?
最佳答案
” For ordinary [non-virtual] bases, there is always a unique subobject of a given cast (or none) when downcasting (that is, toward a derived class; §22.2
那是因为非虚拟继承创建了派生类的严格层次结构,分支不会再次聚集在一起。对象必须属于某个最派生的类 T
,位于该类树的叶节点下方。往上走,就不能再遇到T
了,因为一个类是不能继承自己的。因此,通过动态向下转换为 T
,您最终将得到对象的最派生类。对于(或每个)继承链中的任何类也是如此。
关于c++ - dynamic_casting 对象混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29447459/
我正在回答 question几分钟前,它向我提出了另一个问题: 在我的一个项目中,我做了一些网络消息解析。消息采用以下形式: [1 byte message type][2 bytes payload
有人说the use of dynamic_cast often means bad design and dynamic_cast can be replaced by virtual functi
在模板类中,我尝试使用 dynamic_cast 从文件中读取的字符串进行转换,并希望能够使用 bad_cast 异常捕获失败的转换。但是,在编译时(将测试程序设置为 double 作为模板类,我得到
在我的程序中,我有一个基类(ship)和四个派生类(pirate、mercantile、repairing, exploring) 和 repairing 的成员函数中我想知道 ship * 指向的对
本书The c++ programming language有关于 dynamic_cast 的部分,我不确定我是否理解正确。 The purpose of dynamic_cast is to de
这个问题在这里已经有了答案: How to write own dynamic_cast (4 个答案) 关闭 6 年前。 Stroustrup 书中的一个练习如下: Write a templat
我正在尝试确定 T* 指针指向的对象是否真的是 T 对象,或者其他一些不相关的类型。我试过 dynamic_cast,但它一点用处都没有,它返回指针本身而不是 null,即使很明显它没有指向有效的 T
在我的系统中,低层级对象通过调用+1 级层级对象的函数与高层级对象通信,调用+1 级层级对象的函数,等等,直到函数调用停止在配方处. 有一个Message抽象类,还有很多派生类,分别保存着不同种类的数
我已经对此进行了一些搜索,但只是为了确保: 使用dynamic_cast 将基类指针转换为派生类指针需要基类是多态的吗?不然连编译都编译不了? 谢谢。 最佳答案 您可以使用 dynamic_cast
class A { public: virtual void func() { cout(pa); pb->func1(); return 0; } 尽管 pb 指向一个
我有这段代码: void addLineRelative(LineNumber number, LineNumber relativeNumber) { list >::ite
我刚刚在这里读到这个问题 https://stackoverflow.com/a/332086/2689696它告诉动态类型转换 You can use it for more than just c
我的问题与 What's the point of IsA() in C++? 有关.我有一个性能关键代码,其中包含在特定位置处理来自派生类的特定函数,其中只有基指针可用。检查我们拥有哪个派生类的最佳
这个问题在这里已经有了答案: When should static_cast, dynamic_cast, const_cast, and reinterpret_cast be used? (12
我正在为我的游戏制作一个简单的图形引擎。 这是界面部分: class Texture { ... }; class DrawContext { virtual void set_texture
这件事让我沮丧了一个多星期。我已经浏览了该网站上有关 dynamic_casting 的各种主题,但我仍然不确定实现它的最佳方法是什么。 所以我有一个这样的基类: class baseClass {
我在尝试编译我的代码时遇到以下错误。 ERROR! ..\myCode\CPOI.cpp:68:41: error: cannot dynamic_cast 'screenType' (of type
请帮助我理解奇怪的行为: 我在处理析构函数~MyLogicObject()时使用dynamic_cast from MyObject to MyLogicObject,但编译器抛出异常:非 rtti_
我想了解装饰器模式是如何工作的,以及我可以在多大程度上“扩展”它以满足我的需要。正在关注this例如,我有扩展类 XYZ。存在派生类“KLM”(来自 XYZ) 具体来说,即使我有一个装饰器模式,派生的
为了好玩,我决定尝试制作一个简单的实体组件系统。我有一个包含所有组件的列表,我创建了一个名为 getPositionComponent 的函数,它获取实体 ID 并返回与该实体相关的位置组件。我制作的
我是一名优秀的程序员,十分优秀!