- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我从《更有效的 C++》一书中复制了以下文本。
第 31 条:关于多个对象使函数成为虚函数。
class GameObject { ... };
class SpaceShip: public GameObject { ... };
class SpaceStation: public GameObject { ... };
class Asteroid: public GameObject { ... };
最常见的双重分派(dispatch)方法通过 if-then-elses 链将我们带回到无情的虚函数模拟世界。在这个严酷的世界中,我们首先发现 otherObject 的真实类型,然后针对所有可能性对其进行测试:
void SpaceShip::collide(GameObject& otherObject)
{
const type_info& objectType = typeid(otherObject);
if (objectType == typeid(SpaceShip)) {
SpaceShip& ss = static_cast<SpaceShip&>(otherObject);
process a SpaceShip-SpaceShip collision;
}
else if (objectType == typeid(SpaceStation)) {
SpaceStation& ss =
static_cast<SpaceStation&>(otherObject);
process a SpaceShip-SpaceStation collision;
}
...
}
问题是:
Q1> 为什么我们在这里使用 static_cast 而不是明显的 dynamic_cast?
Q2>‖在这种情况下它们是否相同?
谢谢
//已更新//
其实我对问题2更感兴趣。
例如,
class base {};
class subclass : public base {};
base *pSubClass = new subclass;
subclass *pSubClass1 = static_cast<subClass*> (pSubClass);
//虽然我知道我们应该在这里使用 dynamic_cast,但在这种情况下 static_cast 是否正确地完成了工作?
最佳答案
作为记录,这是执行此操作的惯用方法:
void SpaceShip::collide(GameObject& otherObject)
{
if (SpaceShip* ss = dynamic_cast<SpaceShip*>(&otherObject)) {
// process a SpaceShip-SpaceShip collision;
}
else if (SpaceStation* ss = dynamic_cast<SpaceStation*>(&otherObject)) {
// process a SpaceShip-SpaceStation collision;
}
// ...
}
它更短,表现出相同的性能特征,而且最重要的是,它是惯用的 C++,不会让其他程序员抓耳挠腮,想知道有什么意义。
EDIT(响应 OP 的编辑):
是的,这是定义明确的行为。这是 C++03 标准的内容,§5.2.9/8:
An rvalue of type “pointer to cv1
B
”, whereB
is a class type, can be converted to an rvalue of type “pointer to cv2D
”, whereD
is a class derived fromB
, if a valid standard conversion from “pointer toD
” to “pointer toB
” exists, cv2 is the same cv-qualification as, or greater cv-qualification than, cv1, andB
is not a virtual base class ofD
. The null pointer value is converted to the null pointer value of the destination type. If the rvalue of type “pointer to cv1B
” points to aB
that is actually a sub-object of an object of typeD
, the resulting pointer points to the enclosing object of typeD
. Otherwise, the result of the cast is undefined.
关于c++ - 为什么在这里使用 static_cast 而不是 dynamic_cast?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6025466/
我正在回答 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 并返回与该实体相关的位置组件。我制作的
我是一名优秀的程序员,十分优秀!