std::generic_category
De cppreference.com
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
Definido en el archivo de encabezado <system_error>
|
||
const std::error_category& generic_category(); |
(desde C++11) | |
Obtiene una referencia al objeto de error de categoría estática de los errores genéricos. El objeto es necesaria para anular el error_category::name() función virtual para devolver un puntero a la cadena "generic". Se utiliza para identificar condiciones de error que corresponden a los códigos de POSIX errno .
Original:
Obtains a reference to the static error category object for generic errors. The object is required to override the virtual function error_category::name() to return a pointer to the string "generic". It is used to identify error conditions that correspond to the POSIX errno codes.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Valor de retorno
Una referencia al objeto estático de tipo no especificado de tiempo de ejecución, derivado de std::error_category .
Original:
A reference to the static object of unspecified runtime type, derived from std::error_category.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Excepciones
[editar] Ejemplo
Ejecuta este código
#include <iostream> #include <system_error> #include <cerrno> #include <string> int main() { std::error_condition econd = std::generic_category().default_error_condition(EDOM); std::cout << "Category: " << econd.category().name() << '\n' << "Value: " << econd.value() << '\n' << "Message: " << econd.message() << '\n'; }
Salida:
Category: generic Value: 33 Message: Numerical argument out of domain
[editar] Ver también
(C++11) |
Identifica la categoría de error del sistema operativo. (función) |
(C++11) |
La enumeración std::error_condition que lista todas las constantes de macros <cerrno> estándar. (clase) |