std::independent_bits_engine::independent_bits_engine
Aus 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> independent_bits_engine(); |
(1) | (seit C++11) |
template< class Sseq > explicit independent_bits_engine( Sseq& seq ); |
(2) | (seit C++11) |
explicit independent_bits_engine( const Engine& e ); |
(3) | (seit C++11) |
explicit independent_bits_engine( const Engine&& e ); |
(4) | (seit C++11) |
Erzeugt neue Pseudo-Random-Motoradapter .
Original:
Constructs new pseudo-random engine adaptor.
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)
Standardkonstruktor. Die zugrunde liegende Engine wird auch default-gebaut .
Original:
Default constructor. The underlying engine is also default-constructed.
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)
Konstruiert die zugrunde liegende Motor mit Seed-Sequenz
seq .Original:
Constructs the underlying engine with seed sequence
seq.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)
Konstruiert die zugrunde liegende Engine mit einer Kopie des
e .Original:
Constructs the underlying engine with a copy of
e.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.
4)
Move-Konstrukte der zugrunde liegende Motor mit
e. e hält nicht näher, aber gültigen Zustand danach .Original:
Move-constructs the underlying engine with
e. e holds unspecified, but valid state afterwards.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
| seq | - | Seed-Sequenz um die darunter liegende Motor mit konstruieren
Original: seed sequence to construct the underlying engine with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| e | - | Pseudozufallszahlengenerator Motor mit initialisieren
Original: pseudo-random number engine to initialize with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |