當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ forward_list::before_begin()用法及代碼示例


forward_list::before_begin()是CPP STL中的內置函數,它返回一個迭代器,該迭代器指向forward_list的第一個元素之前的位置。

用法:

forwardlist_name.before_begin()

參數:該函數不接受任何參數。


返回值:該函數返回一個迭代器,該迭代器指向forward_list的第一個元素之前的位置。

下麵的程序演示了以上函數:

// C++ program to illustrate the 
// before_begin() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialising the forward list 
    forward_list<int> fl = { 20, 30, 40, 50 }; 
  
    // performing before_begin function 
    auto it = fl.before_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::before_begin() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。