std::basic_streambuf::uflow
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. |
<metanoindex/>
<tbody> </tbody> int_type uflow(); |
||
En sorte que au moins un caractre est disponible dans la zone de saisie en mettant jour les pointeurs la zone d'entre (si ncessaire). En cas de succs renvoie la valeur de ce caractre et les progrs de la valeur de la' obtenir le pointeur d'un caractre. Le rendement de dfaillance
traits::eof() . Original:
Ensures that at least one character is available in the input area by updating the pointers to the input area (if needed). On success returns the value of that character and advances the value of the get pointer by one character. On failure returns
traits::eof(). 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.
La fonction peut mettre jour
gptr, egptr et eback pointeurs pour dfinir l'emplacement des donnes nouvellement charges (le cas chant). En cas d'chec, la fonction veille ce que soit gptr() == nullptr ou gptr() == egptr .Original:
The function may update
gptr, egptr and eback pointers to define the location of newly loaded data (if any). On failure, the function ensures that either gptr() == nullptr or gptr() == egptr.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.
La version classe de base de la fonction appelle
underflow. Les classes drives peuvent substituer cette fonction pour permettre aux mises jour de la zone get dans le cas de l'puisement .Original:
The base class version of the function calls
underflow. The derived classes may override this function to allow updates to the get area in the case of exhaustion.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.
Paramtres
(Aucun)
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.
Retourne la valeur
La valeur du caractre qui a t point par le pointeur se' avant qu'il ne soit avanc d'un ou
traits::eof() autrement .Original:
The value of the character that was pointed to by the get pointer before it was advanced by one, or
traits::eof() otherwise.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.
La version classe de base de la fonction retourne la valeur retourne par
underflow .Original:
The base class version of the function returns the value returned by
underflow.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.
Note
Les fonctions publiques de std::streambuf appeler cette fonction que si
gptr() == nullptr ou gptr() >= egptr() .Original:
The public functions of std::streambuf call this function only if
gptr() == nullptr or gptr() >= egptr().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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
[ virtuel ]Original: virtual The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
lit les caractres partir de la squence d'entre associe la zone d'obtention Original: reads characters from the associated input sequence to the get area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre virtuelle protge) |
[ virtuel ]Original: virtual The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
crit des caractres de la squence de sortie associ partir de la zone de vente Original: writes characters to the associated output sequence from the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre virtuelle protge) |