valarray::operator~
Un operatore unario che ottiene i valori bit per bit NON di ogni elemento in un valarray.
valarray<Type> operator~( ) const;
Valore restituito
Il valarray di valori boolean che sono NON bit per bit dei valori dell'operando valarray.
Note
Un'operazione bit per bit può essere utilizzata solo per modificare i bit in char e tipi di dati e varianti int e non in float, in double, in LONGdouble, in void, in bool o in un altro, tipi di dati più complessi.
NON Bit per bit ha la stessa tabella di flusso NON logico ma viene applicato al tipo di dati a livello di singoli bit.Il bit specificato b, ~b è true se b è false e false se b è true.NONLogicooperatore! viene applicato a un livello elemento, contante tutti i valori diversi da zero come truee il risultato è un valarray di valori boolean.NONBit per bitoperator~, invece, può comportare un valarray di valori diversi da 0 o 1, come risultato di un'operazione bit per bit.
Esempio
// 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;
}
Requisiti
intestazione: <valarray>
Spazio dei nomi: deviazione standard