다음을 통해 공유


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_lt.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;
   
   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 less-than comparson test is the\n valarray: ( ";
      for (i = 0 ; i < 10 ; i++ )
         cout << vaNE [ i ] << " ";
   cout << ")." << endl;
}
  
  
  

요구 사항

헤더: <valarray>

네임 스페이스: std

참고 항목

참조

stack::operator<