Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
generic_category
Represents the category for generic errors.
const error_category& generic_category() noexcept;
Remarks
The generic_category object is an implementation of error_category.
is_error_code_enum_v
A helper variable template for the is_error_code_enum value.
template <class T>
constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value;
is_error_condition_enum_v
A helper variable template for the is_error_condition_enum value.
template <class T>
constexpr bool is_error_condition_enum_v = is_error_condition_enum<T>::value;
make_error_code
Creates an error code object.
error_code make_error_code(std::errc error) noexcept;
Parameters
error
The std::errc enumeration value to store in the error code object.
Return Value
The error code object.
make_error_condition
Creates an error condition object.
error_condition make_error_condition(std::errc error) noexcept;
Parameters
error
The std::errc enumeration value to store in the error condition object.
Return Value
The error condition object.
system_category
Represents the category for operating system errors.
const error_category& system_category() noexcept;
Remarks
The system_category object is an implementation of error_category.