Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは規格に準拠していますか?
class Foo { Bar m_bar; Bar * m_woo; public: Foo() : m_bar(42, 123), m_woo(&m_bar) { } };
正しいです。正しくないのは、その特定のサブオブジェクトが完全に初期化される前にそのポインターを逆参照することです。