|
|
|
bool empty()const; | (noexcept since C++11) (constexpr since C++20) | |
Checks if the string has no characters, i.e. whetherbegin()== end().
Contents |
(none)
true if the string is empty,false otherwise
Constant.
#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:''
returns the number of characters (public member function)[edit] | |
returns the maximum number of characters (public member function)[edit] | |
returns the number of characters that can be held in currently allocated storage (public member function)[edit] | |
(C++17)(C++20) | returns the size of a container or array (function template)[edit] |
(C++17) | checks whether the container is empty (function template)[edit] |
checks whether the view is empty (public member function of std::basic_string_view<CharT,Traits> )[edit] |