std::deque<T,Allocator>::empty
來自 cppreference.com
bool empty() const; |
(C++11 起無異常丟擲) | |
檢查容器是否為空,即 begin() == end()。
目錄 |
[編輯] 返回值
如果容器為空,則為 true;否則為 false。
[編輯] 複雜度
常數時間。
[編輯] 示例
以下程式碼使用 empty
檢查 std::deque<int> 是否包含任何元素
執行此程式碼
#include <deque> #include <iostream> int main() { std::deque<int> numbers; std::cout << std::boolalpha; std::cout << "Initially, numbers.empty(): " << numbers.empty() << '\n'; numbers.push_back(42); numbers.push_back(13317); std::cout << "After adding elements, numbers.empty(): " << numbers.empty() << '\n'; }
輸出
Initially, numbers.empty(): true After adding elements, numbers.empty(): false
[編輯] 參閱
返回元素數量 (public member function) | |
(C++17) |
檢查容器是否為空 (function template) |