std::independent_bits_engine::seed
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> void seed(); |
(1) | (seit C++11) |
void seed( result_type value ); |
(2) | (seit C++11) |
template< class Sseq > void seed( Sseq& seq ); |
(3) | (seit C++11) |
Reinitialisiert den internen Zustand der darunterliegenden Motors unter Verwendung einer neuen Startwert .
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)
Seeds die zugrunde liegende Engine mit dem Standard-Startwert. Effektiv nennt
e.seed(), wo e die zugrunde liegende Engine ist .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)
Seeds die zugrunde liegende Motor mit dem Startwert
s. Effektiv nennt e.seed(value), wo e die zugrunde liegende Engine ist .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)
Seeds die zugrunde liegende Motor mit dem Seed-Sequenz
seq. Effektiv nennt e.seed(seq), wo e die zugrunde liegende Engine ist .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.
Parameter
Rückgabewert
(None)
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.
Ausnahmen
(None)
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.
