public member function
<system_error>

std::error_condition::message

string message() const;
获取消息
返回与错误条件关联的消息。

错误消息由错误条件所属的类别定义。

此函数返回的结果与调用以下成员相同
1
category().message(value())

参数



返回值

一个string对象,包含与错误条件关联的消息。

另见