std::discard_block_engine::discard_block_engine
Da cppreference.com
< cpp | numeric | random | discard block 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. |
discard_block_engine(); |
(1) | (desde C++11) |
template< class Sseq > explicit discard_block_engine( Sseq& seq ); |
(2) | (desde C++11) |
explicit discard_block_engine( const Engine& e ); |
(3) | (desde C++11) |
explicit discard_block_engine( const Engine&& e ); |
(4) | (desde C++11) |
Constrói adaptador novo motor pseudo-aleatório.
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)
Construtor padrão. O mecanismo subjacente também é padrão construído.
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)
Constrói o mecanismo subjacente com
seq
seqüência de sementes.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)
Constrói o mecanismo subjacente com uma cópia do
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)
Mova-constrói o mecanismo subjacente com
e
. e
mantém o estado não especificada, mas válido depois.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.
[editar] Parâmetros
seq | - | seqüência de semente para a construção do mecanismo subjacente com
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 | - | pseudo-aleatório motor número para inicializar com
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. |