bool empty() const;
(noexcept since C++11)Checks if the string has no characters, i.e. whether begin() == end().
[edit] Parameters(none)
[edit] Return valuetrue if the string is empty, false otherwise
[edit] ComplexityConstant.
[edit] Example#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"; }
Output:
s.empty():true s:'' s.empty():false s:'Exemplar' s.empty():true s:''[edit] See also returns the number of characters
std::basic_string_view<CharT,Traits>
) [edit]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4