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