std::streamoff
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>
|
||
| typedef /*unspecified*/ streamoff; |
||
El
std::streamoff tipo es un tipo firmado integral de tamaño suficiente para representar el tamaño de archivo máximo posible soportado por el sistema operativo. Normalmente, este es un typedef a long long .Original:
The type
std::streamoff is a signed integral type of sufficient size to represent the maximum possible file size supported by the operating system. Typically, this is a typedef to long long.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.
Se utiliza para representar las compensaciones de posiciones en el flujo (valores de std::fpos tipo). Un valor de
std::streamoff -1 también se utiliza para representar las condiciones de error por algunas de las funciones de la biblioteca de E / S .Original:
It is used to represent offsets from stream positions (values of type std::fpos). A
std::streamoff value of -1 is also used to represent error conditions by some of the I/O library functions.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] Relación con std :: FPO
- la diferencia entre dos objetos std::fpos es un valor de std::streamoff tipoOriginal:the difference between two std::fpos objects is a value of type std::streamoffThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- un valor de std::streamoff tipo puede añadirse o restarse de std::fpos produciendo un std::fpos diferente .Original:a value of type std::streamoff may be added or subtracted from std::fpos yielding a different std::fpos.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- un valor de tipo std::fpos es implícitamente convertible a std::streamoff (los resultados de la conversión en el desplazamiento desde el principio del archivo .Original:a value of type std::fpos is implicitly convertible to std::streamoff (the conversion results in the offset from the beginning of the file.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- std::fpos un valor de tipo se puede construir a partir de un valor de tipo std::streamoffOriginal:a value of type std::fpos is constructible from a value of type std::streamoffThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ver también
| representa la posición absoluta en una corriente o un archivo Original: represents absolute position in a stream or a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (clase de plantilla) | |
| sets the input position indicator (miembro público of std::basic_istream función)
| |
| establece el indicador de posición de salida Original: sets the output position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público of std::basic_ostream función)
| |