多级继承和空基优化中的内存布局
作者:Kirill Afentev 提问时间:10/10/2023
请考虑以下继承: struct Empty {}; struct A: Empty { int64_t a; int8_t b; }; struct B: A { int32_t c; }...
memory-layout 问答列表
作者:Kirill Afentev 提问时间:10/10/2023
请考虑以下继承: struct Empty {}; struct A: Empty { int64_t a; int8_t b; }; struct B: A { int32_t c; }...