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.
ベクトルの最初と最後の要素を特別なケースとして割り当てる必要があるコードがあります。
somevector.back() は左辺値ですか? 次のコードは機能しますか?
some_vector.front()=first_value; some_vector.back()=last_value;
はい、最後の要素への参照を返すため、可能です。最初に空でないことを確認してください。