2011.12.4 vector iterator
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> nTestNum;
for (int i = 0; i <= 10; i++)
{
nTestNum.push_back(i);
}
// cout<<nTestNum.at(2)<<endl
// <<nTestNum.at(1)<<endl
// <<nTestNum.at(0)<<endl
// <<nTestNum[0]<<endl
// <<nTestNum[1]<<endl
// <<nTestNum[2]<<endl;
// for (int i = 0; i <= 10; i++)
// {
// cout<<nTestNum.at(i)<<'\t';
// }
// for (int j = 0; j <= 10; j++)
// {
// cout<<nTestNum[j]<<'\t';
// }
vector<int>::iterator out;
// out = nTestNum.end();
// cout<<*out<<endl;
for (out = nTestNum.begin();out<nTestNum.end();out++)
{
cout<<*out<<'\t';
}
}