◐ Shell
clean mode source ↗

std::valarray::resize - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

void resize( std::size_t count, T value = T() );

Redimensiona a valarray para conter os elementos count.

Original:

Resizes the valarray to contain count elements.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Se o tamanho atual é menor do que count, elementos adicionais são acrescentados e inicializado com value.

Original:

If the current size is less than count, additional elements are appended and initialized with value.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Se o tamanho da corrente é maior do que count, o valarray é reduzida aos seus elementos count primeira.

Original:

If the current size is greater than count, the valarray is reduced to its first count elements.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

count -

novo tamanho do recipiente

Original:

new size of the container

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

value -

o valor para inicializar os novos elementos com

Original:

the value to initialize the new elements with

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

(Nenhum)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exemplo

Veja também

retorna o tamanho de valarray

Original:

returns the size of valarray

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(função pública membro) [edit]