Похожие чаты

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 ответов

14 просмотров

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.

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

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

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Гайс, вопрос для разносторонее развитых: читаю стрим с юарта, нада выделять с него фреймы с определенной структурой, если ли чо готовое, или долбаться с ринг буффером? нада у...
Vitaly
9
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Карта сайта