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.
ベクトルへの自動参照があります。
auto &myVector = solution->myVector;
ここで、solution->myVector は public メンバーであり、いくつかのオブジェクトのベクトルです。
後でコードでこれを行う場合:
myVector = someOtherVector;
solution->myVector は変更されますか?
ありがとう