std::shuffle_order_engine::seed
Aus cppreference.com
< cpp | numeric | random | shuffle order engine
![]() | 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. |
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.
[Bearbeiten]Parameter
value | - | Startwertes in der Initialisierung der interne Zustand der zugrunde liegende Modul verwenden 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 | - | Seed-Sequenz in der Initialisierung des internen Zustands des darunterliegenden Motors verwenden 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. |
[Bearbeiten]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.
[Bearbeiten]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.