std::empty
定义于头文件 <array>
|
||
定义于头文件 <deque>
|
||
定义于头文件 <forward_list>
|
||
定义于头文件 <iterator>
|
||
定义于头文件 <list>
|
||
定义于头文件 <map>
|
||
定义于头文件 <regex>
|
||
定义于头文件 <set>
|
||
定义于头文件 <span>
|
(C++20 起) |
|
定义于头文件 <string>
|
||
定义于头文件 <string_view>
|
(C++17 起) |
|
定义于头文件 <unordered_map>
|
||
定义于头文件 <unordered_set>
|
||
定义于头文件 <vector>
|
||
(1) | ||
template <class C> constexpr auto empty(const C& c) -> decltype(c.empty()); |
(C++17 起) (C++20 前) |
|
template <class C> [[nodiscard]] constexpr auto empty(const C& c) -> decltype(c.empty()); |
(C++20 起) | |
(2) | ||
template <class T, std::size_t N> constexpr bool empty(const T (&array)[N]) noexcept; |
(C++17 起) (C++20 前) |
|
template <class T, std::size_t N> [[nodiscard]] constexpr bool empty(const T (&array)[N]) noexcept; |
(C++20 起) | |
(3) | ||
template <class E> constexpr bool empty(std::initializer_list<E> il) noexcept; |
(C++17 起) (C++20 前) |
|
template <class E> [[nodiscard]] constexpr bool empty(std::initializer_list<E> il) noexcept; |
(C++20 起) | |
返回给定的容器是否为空。
1) 返回 c.empty()
2) 返回 false
3) 返回 il.size() == 0
参数
c | - | 拥有 empty 方法的容器
|
array | - | 任意类型的数组 |
il | - | 一个 initializer_list |
返回值
若容器不含有任何元素则为 true 。
可能的实现
版本一 |
---|
template <class C> constexpr auto empty(const C& c) -> decltype(c.empty()) { return c.empty(); } |
版本二 |
template <class T, std::size_t N> constexpr bool empty(const T (&array)[N]) noexcept { return false; } |
版本三 |
template <class E> constexpr bool empty(std::initializer_list<E> il) noexcept { return il.size() == 0; } |
示例
运行此代码
#include <iostream> #include <vector> template <class T> void print(const T& container) { if ( !std::empty(container) ) { std::cout << "Elements:\n"; for ( const auto& element : container ) std::cout << element << '\n'; } else { std::cout << "Empty\n"; } } int main() { std::vector<int> c = { 1, 2, 3 }; print(c); c.clear(); print(c); int array[] = { 4, 5, 6 }; print(array); auto il = { 7, 8, 9 }; print(il); }
输出:
Elements: 1 2 3 Empty Elements: 4 5 6 Elements: 7 8 9