valarray::operator~
Operador unário que obtenha os valores bit a bit de NOT de cada elemento em um valarray.
valarray<Type> operator~( ) const;
Valor de retorno
O valarray de valores boolianos que são NOT bit a bit dos valores do elemento do operando valarray.
Comentários
Uma operação bit a bit só pode ser usado para manipular bit em char e tipos de dados e variantes de int e não em float, em double, em longdouble, em void, em bool ou em outro, os tipos de dados mais complexos.
NOT bit a bit tem a mesma tabela verdadeiros que NOT lógico mas se aplica ao tipo de dados no nível de bits individuais. O bit determinado b, ~b é true se b é false e false se b é true. NOT lógicooperador! se aplica em um nível de elemento, contando todos os valores diferentes de zero como true, e o resultado é um valarray de valores boolianos. NOT bit a bitoperator~, entretanto, pode resultar em um valarray dos valores diferentes de 0 ou 1, dependendo do resultado de operação bit a bit.
Exemplo
// valarray_op_bitnot.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>
int main( )
{
using namespace std;
int i;
valarray<unsigned short int> vaL1 ( 10 );
valarray<unsigned short int> vaNOT1 ( 10 );
for ( i = 0 ; i < 10 ; i += 2 )
vaL1 [ i ] = i;
for ( i = 1 ; i < 10 ; i += 2 )
vaL1 [ i ] = 5*i;
cout << "The initial valarray <unsigned short int> is: ( ";
for ( i = 0 ; i < 10 ; i++ )
cout << vaL1 [ i ] << " ";
cout << ")." << endl;
vaNOT1 = ~vaL1;
cout << "The element-by-element result of "
<< "the bitwise NOT operator~ is the\n valarray: ( ";
for ( i = 0 ; i < 10 ; i++ )
cout << vaNOT1 [ i ] << " ";
cout << ")." << endl << endl;
valarray<int> vaL2 ( 10 );
valarray<int> vaNOT2 ( 10 );
for ( i = 0 ; i < 10 ; i += 2 )
vaL2 [ i ] = i;
for ( i = 1 ; i < 10 ; i += 2 )
vaL2 [ i ] = -2 * i;
cout << "The initial valarray <int> is: ( ";
for ( i = 0 ; i < 10 ; i++ )
cout << vaL2 [ i ] << " ";
cout << ")." << endl;
vaNOT2 = ~vaL2;
cout << "The element-by-element result of "
<< "the bitwise NOT operator~ is the\n valarray: ( ";
for ( i = 0 ; i < 10 ; i++ )
cout << vaNOT2 [ i ] << " ";
cout << ")." << endl;
// The negative numbers are represented using
// the two's complement approach, so adding one
// to the flipped bits returns the negative elements
vaNOT2 = vaNOT2 + 1;
cout << "The element-by-element result of "
<< "adding one\n is the negative of the "
<< "original elements the\n valarray: ( ";
for ( i = 0 ; i < 10 ; i++ )
cout << vaNOT2 [ i ] << " ";
cout << ")." << endl;
}
Requisitos
Cabeçalho: <valarray>
Namespace: std