2010-01-25 今日の失敗 日記 C++ vector<foo> xs; として, *(xs.begin()) とすれば,xsの先頭要素にアクセスできる. しかし, *(xs.end()) では,xsの最終要素にアクセスできない. xs.back() で良い.