deque中的cbegin()方法是C++ STL中的函數,該函數返回指向容器第一個元素的迭代器。
用法:
deque_name.cbegin()
返回值:返回一個常量迭代器,該迭代器指向雙端隊列的第一個元素。這意味著,迭代器可用於遍曆隊列,但不能修改隊列。也就是說,如果使用常量迭代器進行調用,則諸如插入,擦除之類的函數將引發錯誤。
當您不希望代碼的任何部分修改雙端隊列的內容時,應使用常量迭代器。
以下程序說明了該函數。
示例1:
#include <deque>
#include <iostream>
using namespace std;
int main()
{
// Create a deque
deque<int> dq = { 2, 5, 7, 8, 6 };
// Print the first element of deque
// using cbegin() method
cout << "First element of the deque is: ";
// Get the iterator pointing to the first element
// And dereference it
cout << *dq.cbegin();
}
輸出:
First element of the deque is: 2
示例2:
#include <deque>
#include <iostream>
using namespace std;
int main()
{
// Create a deque
deque<int> dq = { 1, 5, 2, 4, 7 };
// Insert an element at the front
dq.push_front(45);
// Insert an element at the back
dq.push_back(56);
// Print the first element of deque
// using cbegin() method
cout << "First element of the deque is: ";
// Get the iterator pointing to the first element
// And dereference it
cout << *dq.cbegin();
}
輸出:
First element of the deque is: 45
相關用法
- C++ deque::pop_front()、deque::pop_back()用法及代碼示例
- C++ deque::emplace_front()、deque::emplace_back()用法及代碼示例
- C++ deque::clear()、deque::erase()用法及代碼示例
- C++ deque::empty()、deque::size()用法及代碼示例
- C++ deque::front()、deque::back()用法及代碼示例
- C++ unordered_map cbegin用法及代碼示例
- C++ forward_list cbegin()用法及代碼示例
- C++ unordered_set cbegin()用法及代碼示例
- C++ set cbegin()、cend()用法及代碼示例
- C++ unordered_multiset cbegin()用法及代碼示例
- C++ map cbegin()、cend()用法及代碼示例
- C++ unordered_multimap cbegin()用法及代碼示例
- C++ deque::at()、deque::swap()用法及代碼示例
注:本文由純淨天空篩選整理自tufan_gupta2000大神的英文原創作品 deque cbegin() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。