gpt4 book ai didi

c++ - dynamic_cast vs 虚函数 vs 成员枚举?

转载 作者:太空狗 更新时间:2023-10-29 23:33:06 24 4
gpt4 key购买 nike

我的问题是指:

C++ dynamic_cast vs storing object type in a static enum?

问题未得到解答的地方。 dynamic_cast 需要 RTTI,而虚函数需要表查找,这会减慢它们的调用速度(我知道 Stroustrup 推荐这样做)。枚举 + 访问器是区分类型的最快方法吗?

编辑:

我的帖子的重点是类 Screen:

class ScreenImpl;

class Screen
{
public:
enum Type
{
GLES1,
GLES2,
GLES3
};

enum Type type() const noexcept { return type_; }

private:
enum Type type_;

ScreenImpl* impl_;
};

该类可以有不同的实现(使用 PIMPL,可以创建 3 个不同的上下文之一,头文件保持不变,所以 static_cast 是可以的)和我认为对象可能会查询它们正在运行的上下文(GLES1、GLES2 或 GLES3)。或者,我可以使用 dynamic_cast(至少需要 1 个虚拟成员函数)或 typeid。现在,在阅读了这些帖子之后,我想我会取消这个,让所有对象提前知道它们在什么上下文中运行(放弃所有 ifs 和开关,以及虚函数的调用)。

最佳答案

如有疑问,分析并检查装配:)

这里是三种情况的比较(使用dynamic_cast,使用虚函数(type)和使用enum)。为了简单起见,special 方法在所有情况下都是相同的,只能看到实际情况下的差异。然而,在现实世界中,“特殊”每次都会有所不同,否则就没有意义了。

by_enum 还演示了 vcall 开始时发生的情况。

enum Type { D1_t, D2_t, D3_t, D4_t, D5_t };
struct Base
{
virtual ~Base() = default;
virtual Type type() = 0;
};

struct D1 : public Base
{
Type type() override { return D1_t; }
int special1();
};
struct D2 : public Base{
Type type() override { return D2_t; }
int special2();
};
struct D3 : public D2{
Type type() override { return D3_t; }
int special3();
};
struct D4 : public D2{
Type type() override { return D4_t; }
int special4();
};
struct D5 : public D4{
Type type() override { return D5_t; }
int special5();
};


int by_dynamic(Base* b)
{
if(auto d = dynamic_cast<D1*>(b)) return d->special1();
else if(auto d = dynamic_cast<D2*>(b)) return d->special2();
else if(auto d = dynamic_cast<D3*>(b)) return d->special3();
else if(auto d = dynamic_cast<D4*>(b)) return d->special4();
else if(auto d = dynamic_cast<D5*>(b)) return d->special5();
}

int by_enum(Base* b)
{
switch(b->type())
{
case D1_t:
return static_cast<D1*>(b)->special1();
break;
case D2_t:
return static_cast<D2*>(b)->special2();
break;
case D3_t:
return static_cast<D3*>(b)->special3();
break;
case D4_t:
return static_cast<D4*>(b)->special4();
break;
case D5_t:
return static_cast<D5*>(b)->special5();
break;
}
}

这是by_dynamic (GCC-5.2, -O3) 的相关ASM。所以我认为,如果您的性能受限,请选择枚举。

by_dynamic(Base*):
testq %rdi, %rdi
je .L15
pushq %rbx
xorl %ecx, %ecx
movl typeinfo for D1, %edx
movl typeinfo for Base, %esi
movq %rdi, %rbx
call __dynamic_cast
testq %rax, %rax
je .L3
popq %rbx
movq %rax, %rdi
jmp D1::special1()
.L3:
xorl %ecx, %ecx
movl typeinfo for D2, %edx
movl typeinfo for Base, %esi
movq %rbx, %rdi
call __dynamic_cast
testq %rax, %rax
je .L4
popq %rbx
movq %rax, %rdi
jmp D2::special2()
.L4:
xorl %ecx, %ecx
movl typeinfo for D3, %edx
movl typeinfo for Base, %esi
movq %rbx, %rdi
call __dynamic_cast
testq %rax, %rax
je .L5
popq %rbx
movq %rax, %rdi
jmp D3::special3()
.L5:
xorl %ecx, %ecx
movl typeinfo for D4, %edx
movl typeinfo for Base, %esi
movq %rbx, %rdi
call __dynamic_cast
testq %rax, %rax
je .L6
popq %rbx
movq %rax, %rdi
jmp D4::special4()
.L6:
xorl %ecx, %ecx
movl typeinfo for D5, %edx
movl typeinfo for Base, %esi
movq %rbx, %rdi
call __dynamic_cast
testq %rax, %rax
je .L2
popq %rbx
movq %rax, %rdi
jmp D5::special5()
.L2:
popq %rbx
.L15:
ret

对于 by_enum

by_enum(Base*):
pushq %rbx
movq (%rdi), %rax
movq %rdi, %rbx
call *16(%rax)
cmpl $4, %eax
ja .L18
movl %eax, %eax
movq %rbx, %rdi
jmp *.L20(,%rax,8)
.L20:
.quad .L19
.quad .L21
.quad .L22
.quad .L23
.quad .L24
popq %rbx
jmp D4::special4()
popq %rbx
jmp D5::special5()
popq %rbx
jmp D1::special1()
popq %rbx
jmp D2::special2()
popq %rbx
jmp D3::special3()
.L18:
popq %rbx
ret

关于c++ - dynamic_cast vs 虚函数 vs 成员枚举?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22288347/

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