名稱空間
變體
操作

std::multiset<Key,Compare,Allocator>::empty

來自 cppreference.com
< cpp‎ | 容器‎ | multiset
 
 
 
 
bool empty() const;
(C++11 起無異常丟擲)

檢查容器是否沒有元素,即 begin() == end()

目錄

[編輯] 返回值

如果容器為空,則為 true;否則為 false

[編輯] 複雜度

常數時間。

[編輯] 示例

以下程式碼使用 empty 檢查 std::multiset<int> 是否包含任何元素

#include <iostream>
#include <set>
 
int main()
{
    std::multiset<int> numbers;
    std::cout << std::boolalpha;
    std::cout << "Initially, numbers.empty(): " << numbers.empty() << '\n';
 
    numbers.insert(42);
    numbers.insert(19937);
    std::cout << "After adding elements, numbers.empty(): " << numbers.empty() << '\n';
}

輸出

Initially, numbers.empty(): true
After adding elements, numbers.empty(): false

[編輯] 參閱

返回元素數量
(public member function) [edit]
(C++17)
檢查容器是否為空
(function template) [edit]