std::discard_block_engine::seed
Da cppreference.com.
< cpp | numeric | random | discard block engine
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
void seed(); | (1) | (dal C++11) |
void seed( result_type value ); | (2) | (dal C++11) |
template<class Sseq > void seed( Sseq& seq ); | (3) | (dal C++11) |
Reinizializza lo stato interno del motore sottostante con un nuovo valore di inizializzazione.
Original:
Reinitializes the internal state of the underlying engine using a new seed value.
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.
1)
Semi il motore sottostante con il valore di inizializzazione di default. Chiama efficacemente e.seed(), dove
e
è il motore sottostante.Original:
Seeds the underlying engine with the default seed value. Effectively calls e.seed(), where
e
is the underlying engine.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.
2)
Semi il motore sottostante con la
s
valore di inizializzazione. Chiama efficacemente e.seed(value), dove e
è il motore sottostante.Original:
Seeds the underlying engine with the seed value
s
. Effectively calls e.seed(value), where e
is the underlying engine.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.
3)
Semi il motore sottostante con la
seq
sequenza di seme. Chiama efficacemente e.seed(seq), dove e
è il motore sottostante.Original:
Seeds the underlying engine with the seed sequence
seq
. Effectively calls e.seed(seq), where e
is the underlying engine.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.
[modifica]Parametri
value | - | sementi valore da utilizzare nell'inizializzazione dello stato interno del motore sottostante Original: seed value to use in the initialization of the internal state of the underlying engine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
seq | - | sequenza sementi usare nella inizializzazione dello stato interno del motore sottostante Original: seed sequence to use in the initialization of the internal state of the underlying engine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Valore di ritorno
(Nessuno)
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.
[modifica]Eccezioni
(Nessuno)
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.