C++
次の反復ループがあります。
for (it = container.begin(); it != container.end(); ++it) {
//my code here
}
このイテレーション 1 要素を早く終了したい。次のことを試しましたが、コンパイルされません。
for (it = container.begin(); it != container.end() - 1; ++it) { //subtract 1
//my code here
}
これはどのように行うことができますか?ありがとう。