Skip to main content

std::string empty() method

// Const version only
[[nodiscard]] constexpr bool empty() const noexcept;

Checks if the container has no elements, i.e. whether begin() == end().

Parameters

(none)

Return value

true if the container is empty, false otherwise.

Complexity

Constant - O(1).

Why [[nodiscard]]?

The [[nodiscard]] attribute is an attribute that invokes compiler warnings whenever a function has been called and it's result has been discarded.

The reason behind the attribute being applied only to the empty method is that it's likely that the programmer might confuse the adjective empty (which would mean - is this container empty?) for the verb empty (which would mean - please empty this container for me.).

Example

Main.cpp
#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:''
This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.

std::string empty() method

// Const version only
[[nodiscard]] constexpr bool empty() const noexcept;

Checks if the container has no elements, i.e. whether begin() == end().

Parameters

(none)

Return value

true if the container is empty, false otherwise.

Complexity

Constant - O(1).

Why [[nodiscard]]?

The [[nodiscard]] attribute is an attribute that invokes compiler warnings whenever a function has been called and it's result has been discarded.

The reason behind the attribute being applied only to the empty method is that it's likely that the programmer might confuse the adjective empty (which would mean - is this container empty?) for the verb empty (which would mean - please empty this container for me.).

Example

Main.cpp
#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:''
This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.