在 C 结构中,我保证:
struct Foo { ... };
struct Bar {
Foo foo;
...
}
Bar bar;
assert(&bar == &(bar.foo));
现在,在 C++ 中,如果我有:
class Foo { ... };
class Bar: public Foo, public Other crap ... {
...
}
Bar bar;
assert(&bar == (Foo*) (&bar)); // is this guaranteed?
如果是这样,你能给我一个参考(比如“C++ 编程语言,页面 xyz”)吗?
谢谢!