Похожие чаты

So I read about dynamic_cast and some of its

inner workings

The book and some documentation I read say the vtbl plays a major role and the explanation they provided makes it seem very logical. Also, I can remember something like “for a down-cast or cross-cast to work, the concerned Type must be polymorphic”. But I tried an experiment where I did not involve virtual functions at all. Still, up-casting works. Can someone please explain why and how it still works in the absence of Vtables?

1 ответов

7 просмотров

Upcasting works basically because in C++ any derived class contains data for its base classes. You can think of it as of onion layers: class A { int a; }; class B : public A { int b; }; class C : public B { int c; }; If you create instance of C it will likely be 3 ints in memory: a, b, c in this order, because: [[[A data] B data] C data]. If you upcast pointer to C to pointer to B or to A, it will be safe changing type of pointer, since memory of parent A (or B) inside memory of C is actually in the same address. It becomes a little bit more complex if multiple inheritance is involved, because then you actually need to shift address sometimes, but the shift is still known at compile time and it still safe. Not sure if anything of this is written somewhere in the standard, or it is implementation details.

Похожие вопросы

Обсуждают сегодня

Do any of you guys have interesting projects one could join? I'm a Middle Full-Stack developer (JS/TS, React & Node)
Lev Shapiro
33
Типа вызывать GetParent и проверять на соответствие GetModuleHandle?
The Bird of Hermes
25
$res = json_decode($наша строка из респонса); $res1 = array_map(fn($o) => $o->name, $res->breadcrumbs[0]->entities); Как такое будет на Хаскеле?.. В начале весь джейсон, в ко...
Хаскель Моисеевич Гопник
19
Вопрос по диагностике ошибок (я знаю в чем, в данном конкретном примере, я знаю, как исправить, пример модельный, понятно, что в реальности бывает намного запутаннее). module...
ⰄⰎⰋⰐⰐⰑⰛⰤⰧⰧⰩⰄ ⰊⰑⰁⰓⰡⰛⰦⰕⰫ
10
Хтось використовував Vapor на Windows?
Jaroshevskii
15
I read yesterday that in the near future most cryptos will be gone. It's like there is a lot of bullshit within the crypto sphere and this corruption some way is going to be c...
Kanah The Great
19
Тут кста кто-нибудь NeoVim использует?
Simple Sorcerer
13
А чем вам питонисты не угодили?😂
.
79
у меня вопрос на счет .global <name> для чего это нужно если я пишу на ассемблере? только для того что бы сделать это видимым для линкера? вот что написано в докумментации GA...
Simple Sorcerer
1
Есть какой-нибудь для Delphi/FPC T*Compression(Decompression)Stream на базе LZ4/Zstd/любой другой быстрый(и хорошо сжимающий) алгоритм А ещё лучше в pure pascal А ещё лучше од...
notme
52
Карта сайта