命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
basic_string::empty
修改器
搜索
操作
常量
非成员函数
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)
文字
帮助类
推导指南 (C++17)

 
bool empty() const;
(自 C++11 起 noexcept)
(自 C++20 起 constexpr)

检查字符串是否没有任何字符,即 begin() == end().

内容

[编辑] 参数

(无)

[编辑] 返回值

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:''

[编辑] 另请参阅

返回字符数
(公有成员函数) [编辑]
返回最大字符数
(公有成员函数) [编辑]
返回当前分配的存储空间中可以容纳的字符数
(公有成员函数) [编辑]
(C++17)(C++20)
返回容器或数组的大小
(函数模板) [编辑]
(C++17)
检查容器是否为空
(函数模板) [编辑]
检查视图是否为空
(std::basic_string_view<CharT,Traits> 的公有成员函数) [编辑]