using namespace std;
vector<int>::iterator itr;
for (itr = Handle.begin(); itr != Handle.end(); itr++) {
delete *itr;
}
// 指し示すもの
.begin()で最初の要素を指し、 != .end()で最後の要素まで走査できる
vector<int>::iterator itr;
for (itr = Handle.begin(); itr != Handle.end(); itr++) {
delete *itr;
}
// 指し示すもの
.begin()で最初の要素を指し、 != .end()で最後の要素まで走査できる