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.
次のことをしても安全ですか?
std::list<Something> someList; ... someList.push_back(Something(8)); Something* something = &someList.back();
安全だと思いますが、よくわかりません。
ありがとう
はい、オブジェクトは から消去するまで有効ですsomeList。さまざまなコンテナー操作でオブジェクトがいつ破棄されるかについては、イテレーターの無効化規則を参照してください。
someList