std::basic_string<CharT,Traits,Allocator>::empty

来自cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
basic_string::empty
操作
搜索
常量
推导指引 (C++17)
非成员函数
I/O
比较
(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
辅助类
 
bool empty() const;
(C++11 前)
bool empty() const noexcept;
(C++11 起)
(C++20 前)
[[nodiscard]] constexpr bool empty() const noexcept;
(C++20 起)

检查 string 是否无字符,即是否 begin() == end()

参数

(无)

返回值

若 string 为空则为 true ,否则为 false

复杂度

常数。

示例

#include <iostream>
#include <string>
 
int main()
{
    std::string s;
    std::boolalpha(std::cout);
    std::cout << "s.empty():" << s.empty() << "\t s:'" << s << "'\n";
 
    s = "Exemplar";
    std::cout << "s.empty():" << s.empty() << "\t s:'" << s << "'\n";
 
    s = "";
    std::cout << "s.empty():" << s.empty() << "\t s:'" << s << "'\n";
}

输出:

s.empty():true	 s:''
s.empty():false	 s:'Exemplar'
s.empty():true	 s:''

参阅

返回字符数
(公开成员函数)