std::bitset::reset
Da 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. |
bitset<N>& reset(); |
(1) | |
bitset<N>& reset( size_t pos ); |
(2) | |
Define bits para false.
1) Original:
Sets bits to false.
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.
Define todos os bits para false
2) Original:
Sets all bits to false
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.
Define o bit na posição
pos
para false.Original:
Sets the bit at position
pos
to false.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.
Índice |
[editar] Parâmetros
pos | - | a posição do bit a ser configurado
Original: the position of the bit to set The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
*this
[editar] Exceções
1) 2)lances std::out_of_range se
pos
não correspondem para uma posição válida dentro do bitsetOriginal:
throws std::out_of_range if
pos
does not correspond to a valid position within the bitsetThe 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] Exemplo
#include <iostream> #include <bitset> int main() { std::bitset<8> b(42); std::cout << "Bitset is " << b << '\n'; b.reset(1); std::cout << "After b.reset(1): " << b << '\n'; b.reset(); std::cout << "After b.reset(): " << b << '\n'; }
Saída:
Bitset is 00101010 After b.reset(1): 00101000 After b.reset(): 00000000
[editar] Veja também
sets bits to true or given value (função pública membro) | |
alterna os valores dos bits Original: toggles the values of bits 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) |