std::io_errc
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <ios>
|
||
enum class io_errc; |
(depuis C++11) | |
La portée
std::io_errc
énumération définit les codes d'erreur générés par les flux d'E / S dans les objets d'exception std::ios_base::failure. Un seul code d'erreur (std::io_errc::stream
) est nécessaire, même si la mise en œuvre peut définir des codes d'erreur supplémentaires. Parce que la spécialisation approprié de std :: is_error_code_enum est fourni, les valeurs de type std::io_errc
sont implicitement convertible en std::error_code .Original:
The scoped enumeration
std::io_errc
defines the error codes reported by I/O streams in std::ios_base::failure exception objects. Only one error code (std::io_errc::stream
) is required, although the implementation may define additional error codes. Because the appropriate specialization of std::is_error_code_enum is provided, values of type std::io_errc
are implicitly convertible to std::error_code.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.
Sommaire |
[modifier] Constantes membres
Énumération constante
Original: Enumeration constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Value |
stream
|
1 |
[modifier] Classes d'aide
(C++11) |
prolonge le trait std::is_error_code_enum type pour identifier les codes d'erreur iostream Original: extends the type trait std::is_error_code_enum to identify iostream error codes The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe générique) |
[modifier] Fonctions annexes
(C++11) |
construit un code d'erreur iostream Original: constructs an iostream error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
construit un error_condition iostream Original: constructs an iostream error_condition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) |
[modifier] Exemple
#include <iostream> #include <fstream> int main() { std::ifstream f("doesn't exist"); try { f.exceptions(f.failbit); } catch (const std::ios_base::failure& e) { std::cout << "Caught an ios_base::failure.\n"; if(e.code() == std::io_errc::stream) std::cout << "The error code is std::io_errc::stream\n"; } }
Résultat :
Caught an ios_base::failure. The error code is std::io_errc::stream
[modifier] Voir aussi
(C++11) |
détient un code d'erreur dépendant de la plate-forme Original: holds a platform-dependent error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe) |
(C++11) |
détient un code d'erreur portable Original: holds a portable error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe) |
exception ruisseau Original: stream exception The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe membre publique de std::ios_base )
|