码迷,mamicode.com
首页 > 其他好文 > 详细

16.迭代器距离

时间:2019-03-12 12:17:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:push   ++   stream   vector   ios   nbsp   class   ptr   cout   

#include<iostream>
#include <string>
#include <vector>
#include <typeinfo>
using std::string;
using std::cout;
using std::cin;
using std::endl;
using std::vector;

int main() {
    vector<int> v;
    for (decltype(v.size()) i = 2; i < 10; ++i)
    {
        v.push_back(i);
    }
    auto t = v.end() - v.begin(); 
    // t是ptrdiff_t类型
    // ptrdiff_t是C/C++标准库中定义的一个与机器相关的数据类型。
    // ptrdiff_t类型变量通常用来保存两个指针减法操作的结果。
    cout << t << endl;
    system("pause");
    return 0;
}

 

16.迭代器距离

标签:push   ++   stream   vector   ios   nbsp   class   ptr   cout   

原文地址:https://www.cnblogs.com/foremember/p/10515617.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!