今天看vector的front这个函数msdn中的例子,给出的例程是这样的:
// vector_front.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
v1.push_back( 10 );
v1.push_back( 11 );
int& i = v1.front( );
const int& ii = v1.front( );
cout << "The first integer of v1 is "<< i << endl;
i++;
cout << "The second integer of v1 is "<< ii << endl;
}
vector::back这个函数给出的例程如下:
// vector_back.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
v1.push_back( 10 );
v1.push_back( 11 );
int& i = v1.back( );
const int& ii = v1.front( );
cout << "The last integer of v1 is " << i << endl;
i--;
cout << "The next-to-last integer of v1 is "<< ii << endl;
}
其中front函数例程里面,两个输出the first integer和the second integer意思是i是v1中的第一个元素的引用,而ii是v1中第二个元素的引用?back函数例程里面,the last integer和the next-to-last integer两句也是同样的道理。可是front应该都是v1中第一个元素的引用,只是i++;这句之后,ii引用的元素增加了1,恰好和v1中的第二个元素的值相同而已。
不知道是我的理解有问题,还是真的有问题,各位请指教。
posted on 2007-06-04 09:50
探丫头 阅读(1220)
评论(17) 编辑 收藏 引用 所属分类:
编程语言——C++