美文网首页C++ 11
009 cbegin 和 cend 函数

009 cbegin 和 cend 函数

作者: 赵者也 | 来源:发表于2020-02-09 10:20 被阅读0次
    std::vector<int> v;
    auto v_begin = v.cbegin();
    auto v_end = v.cend();
    // v_begin v_end 的类型是 std::vector<int>::const_iterator
    

    相关文章

      网友评论

        本文标题:009 cbegin 和 cend 函数

        本文链接:https://www.haomeiwen.com/subject/cpgieqtx.html