public member function
<system_error>

std::error_condition::operator bool

explicit operator bool() const noexcept;
转换为布尔值
返回错误条件是否具有数值 value,而非 0

如果值为零(通常用于表示没有错误),则该函数返回 false,否则返回 true

参数



返回值

如果条件的数值不为零,则返回 true
否则返回 false

另见