Compartilhar via


valarray::operator~

Um operador unário que obtém os valores bit a bit de NÃO de cada elemento em um valarray.

valarray<Type> operator~( ) const;

Valor de retorno

O valarray de valores Booleanos que são NÃO bit a bit dos valores de elemento do operando valarray.

Comentários

Uma operação bit a bit pode ser usado somente 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.

NÃO Bit a bit tem a mesma tabela de verdade que NÃO lógico mas se aplica ao tipo de dados no nível dos bits individuais.O bit determinado b, ~b é verdadeiro se b for falsa e falso se b é verdadeiro.NÃOLógicooperador! aplica-se em um nível do elemento, contando todos os valores diferente de zero truecomo, e o resultado é um valarray de valores Booleanos.NÃOBit a bitoperator~, por outro lado, pode resultar em um valarray de valores diferentes de 0 ou 1, dependendo do resultado da 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

Consulte também

Referência

valarray Class