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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。