다음을 통해 공유


valarray::operator~

단항 연산자는 비트 얻는 하지 값의 각 요소에는 valarray.

valarray<Type> operator~( ) const;

반환 값

Valarray and 부울 값의 하지 피연산자 valarray 요소 값의.

설명

비트 연산을 비트의 조작에 사용할 수 있습니다 char 및 int 데이터 형식과 변형에서는 없습니다 float, 이중, 긴이중, void, bool 또는 기타 복잡 한 데이터 형식입니다.

비트 하지 같은 사실 테이블을 논리적으로 없습니다 하지만 개별 비트 수준에서 데이터 형식에 적용 됩니다.주어진 비트 b, ~b 그렇습니다 경우 b false 및 false로 b 마찬가지입니다.논리 하지연산자! 모든 0이 아닌 값으로 계산 하는 요소 수준에서 적용 됩니다. true, 부울 값은 valarray가 됩니다.비트 하지연산자 ~, 반면에 valarray 비트 연산의 결과 따라 1 또는 0 이외의 값을 발생할 수 있습니다.

예제

// 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;
}
  
  
  
  
  

요구 사항

헤더: <valarray>

네임 스페이스: std

참고 항목

참조

valarray Class