Namespace
Varianti

<div class="t-tr-text">C + +: concetti<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">C++ concepts:</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div> UnformattedInputFunction

Da cppreference.com.
< cpp‎ | concept

 
 
C + + concetti
Di base
Original:
Basic
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Biblioteca-Wide
Original:
Library-Wide
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Container
Original:
Container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Elementi contenitori
Original:
Container Elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iterator
Original:
Iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Numeri casuali
Original:
Random Numbers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Concorrenza
Original:
Concurrency
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
BasicLockable(C++11)
Lockable(C++11)
TimedLockable(C++11)
Mutex(C++11)
TimedMutex(C++11)
Altro
Original:
Other
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 

[modifica] Requisiti

Un UnformattedInputFunction è una funzione di input flusso che esegue le seguenti operazioni:
Original:
An UnformattedInputFunction is a stream input function that performs the following:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • Crea un oggetto di tipo basic_istream::sentry con durata memorizzazione automatica e con l'argomento noskipws impostato true, che esegue il seguente
    Original:
    Constructs an object of type basic_istream::sentry with automatic storage duration and with the noskipws argument set to true, which performs the following
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • se eofbit o badbit sono impostati sul flusso di input, imposta il failbit pure, e se eccezioni failbit sono abilitati in maschera di eccezione questo flusso di input, getta ios_base::failure.
    Original:
    if eofbit or badbit are set on the input stream, sets the failbit as well, and if exceptions on failbit are enabled in this input stream's exception mask, throws ios_base::failure.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • svuota il legame () "flusso di uscita d, se applicabile
    Original:
    flushes the tie()'d output stream, if applicable
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Verifica lo stato della sentinella chiamando sentry::operator bool(), che è equivalente a basic_ios::good.
    Original:
    Checks the status of the sentry by calling sentry::operator bool(), which is equivalent to basic_ios::good.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Se la sentinella restituito false o il costruttore sentinella ha generato un'eccezione:
    Original:
    If the sentry returned false or sentry's constructor threw an exception:
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • imposta il numero di caratteri estratti (gcount) nel flusso di ingresso a zero
    Original:
    sets the number of extracted characters (gcount) in the input stream to zero
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • se la funzione è stata chiamata a scrivere una serie di CharT, scrive CharT() (il carattere null) alla prima posizione della matrice
    Original:
    if the function was called to write to an array of CharT, writes CharT() (the null character) to the first location of the array
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Se la sentinella restituito true, esegue l'ingresso
    Original:
    If the sentry returned true, performs the input
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • se viene generata un'eccezione durante l'ingresso, imposta badbit nel flusso di input. Se eccezioni badbit sono attivati ​​in questa maschera di eccezione ruscello, l'eccezione viene rilanciata anche.
    Original:
    if an exception is thrown during input, sets badbit in the input stream. If exceptions on badbit are enabled in this stream's exception mask, the exception is also rethrown.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • Se nessuna eccezione è stata generata durante l'immissione, impostare il numero di caratteri estratti (gcount) nel flusso di input.
    Original:
    If no exception was thrown during input, sets the number of extracted characters (gcount) in the input stream.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • In ogni caso, sia che chiude per eccezione o di ritorno, distruttore della sentinella è chiamato prima di lasciare questa funzione.
    Original:
    In any event, whether terminating by exception or returning, the sentry's destructor is called before leaving this function.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.

[modifica] Libreria standard

Le seguenti funzioni della libreria standard sono UnformattedInputFunctions.
Original:
The following standard library functions are UnformattedInputFunctions.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.