list::front(是C++ STL中的內置函數,用於返回對列表容器中第一個元素的引用。與list::begin()函數不同,此函數返回對列表容器中第一個元素的直接引用。
用法:
list_name.front()
參數:該函數不接受任何參數,僅返回對列表容器中第一個元素的引用。
返回值:此函數返回對列表容器中第一個元素的直接引用。
異常:與空列表容器一起使用時,此函數將創建未定義的行為。
以下示例程序旨在說明list::front()函數。
// CPP program to illustrate the
// list::front() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Creating a list
list<int> demoList;
// Add elements to the List
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// get the first element using front()
int ele = demoList.front();
// Print the first element
cout << ele;
return 0;
}
輸出:
10
注意:此函數以恒定的時間複雜度工作。
相關用法
- C++ list::front()、list::back()用法及代碼示例
- C++ list end()用法及代碼示例
- C++ list splice()用法及代碼示例
- C++ list size()用法及代碼示例
- C++ list resize()用法及代碼示例
- C++ list reverse用法及代碼示例
- C++ list push_front()用法及代碼示例
- C++ list pop_front()用法及代碼示例
- C++ list pop_back()用法及代碼示例
- C++ list max_size()用法及代碼示例
- C++ list back()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ list merge()用法及代碼示例
- C++ list emplace()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list front() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。