다음을 통해 공유


operator>= (<valarray>)

하나 valarray의 요소 요소를 동일 하 게 크기의 valarray 또는 여부는 valarray의 모든 요소 보다 큰 또는 이하로 보다 같거나 지정 된 값을 보다 크거나 같은지 여부를 테스트 합니다.

template<class Type>
   valarray<bool> operator>=(
      const valarray<Type>& _Left,
      const valarray<Type>& _Right
   );
template<class Type>
   valarray<bool> operator>=(
      const valarray<Type>& _Left,
      const Type& _Right
   );
template<class Type>
   valarray<bool> operator>=(
      const Type& _Left,
      const valarray<Type>& _Right
   );

매개 변수

  • _Left
    Valarray의 각 요소와 비교할 첫 번째 요소가 비교할 수 있는 두 valarrays 또는 지정 된 값입니다.

  • _Right
    비교할 요소가 되는 두 개의 valarrays의 두 번째 또는 지정 된 값은 valarray의 각 요소와 비교할.

반환 값

부울 값의 valarray.

  • true 이면 경우는 _Left 보다 크거나 해당 요소 또는 값입니다 _Right 요소 또는 값.

  • false 이면 경우는 _Left 요소나 값 보다 작으면 해당 _Right 요소 또는 값입니다.

설명

두 개의 valarrays 요소 수가 같지 않은 경우 결과 정의 되지 않습니다.

예제

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

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

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

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

   vaNE = ( vaL >= vaR );
   cout << "The element-by-element result of "
        << "the greater than or equal test is the\n valarray: ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << vaNE [ i ] << " ";
   cout << ")." << endl;
}
  
  
  

요구 사항

헤더: <valarray>

네임 스페이스: std