当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ forward_list::cbefore_begin()用法及代码示例


forward_list::cbefore_begin()是CPP STL中的内置函数,它返回一个常量随机访问迭代器,该迭代器指向forward_list的第一个元素之前的位置。通过此函数获得的迭代器可用于在容器中进行迭代,但即使对象本身不是常量,也不能用于修改其指向的对象的内容。

用法:

forwardlist_name.cbefore_begin()

参数:该函数不接受任何参数。


返回值:该函数返回一个常量随机访问迭代器,该迭代器指向forward_list的第一个元素之前的位置。

下面的程序演示了以上函数:

// C++ program to illustrate the 
// cbefore_begin() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialising the forward list 
    forward_list<int> fl = { 20, 30, 40, 50 }; 
  
    // performing cbefore_begin function 
    auto it = fl.cbefore_begin(); 
  
    // inserting element before the first element 
    fl.insert_after(it, 10); 
  
    cout << "Element of the list are:" << endl; 
  
    // loop to print the elements of the list 
    for (auto it = fl.begin(); it != fl.end(); ++it) 
        cout << *it << " "; 
  
    return 0; 
}
输出:
Element of the list are:
10 20 30 40 50


相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 forward_list::cbefore_begin() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。