다음을 통해 공유


valarray::operator|=

비트를 가져옵니다 OR 요소는 지정 된 valarray에서 해당 요소 또는 요소 형식의 값 배열에서입니다.

valarray<Type>& operator|=(
   const valarray<Type>& _Right
);
valarray<Type>& operator|=(
   const Type& _Right
);

매개 변수

  • _Right
    Valarray 또는 값의 요소 형식이 동일 합니다 결합 된 피연산자 valarray, element-wise 비트에서 OR 와 피연산자 valarray.

반환 값

요소가 되는 element-wise 비트는 valarray OR 의 여는 피연산자 valarray_Right.

설명

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

비트 OR 같은 사실 테이블을 논리적으로 OR 하지만 개별 비트 수준에서 데이터 형식에 적용 됩니다.주어진 비트 b1 및 b2, b1 ORb2 true 비트를 하나 true 인 경우 false 이면 두 비트가 모두 false 인 경우.

예제

// valarray_class_op_bitor.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>

int main( )
{
   using namespace std;
   int i;

   valarray<int> vaL ( 10 ), vaR ( 10 );
   for ( i = 0 ; i < 10 ; i += 2 )
      vaL [ i ] =  1;
   for ( i = 1 ; i < 10 ; i += 2 )
      vaL [ i ] =  0;
   for ( i = 0 ; i < 10 ; i += 3 )
      vaR [ i ] =  i;
   for ( i = 1 ; i < 10 ; i += 3 )
      vaR [ i ] =  i-1;
   for ( i = 2 ; i < 10 ; i += 3 )
      vaR [ i ] =  i-1;
   
   cout << "The initial operand valarray is:\n ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << vaL [ i ] << " ";
   cout << ")." << endl;

   cout << "The _Right valarray is:\n ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << vaR [ i ] << " ";
   cout << ")." << endl;

   vaL |= vaR;
   cout << "The element-by-element result of "
        << "the logical OR\n operator|= is the valarray:\n ( ";
      for (i = 0 ; i < 10 ; i++ )
         cout << vaL [ i ] << " ";
   cout << ")." << endl;
}
  
  
  

요구 사항

헤더: <valarray>

네임 스페이스: std

참고 항목

참조

valarray Class