begin
和end
返回的具体类型应该由对象是否是常量进行确定,如果对象是常量,则这两个函数返回const_iterator;
如果对象不是常量,则这个函数返回iterator
类型。下面利用一个超级简单的小程序进行验证二者的类型,源代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <iostream> #include <vector> using namespace std; int main() { vector< int > ivec; const vector< int > cv; auto it1 = ivec.begin(); auto it2 = cv.begin(); cout<< typeid (it1).name()<<endl; cout<< typeid (it2).name()<<endl; system ( "pause" ); } |
从输出结果,可以很好的验证上面的分析是正确的。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接