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
    元素进行比较或指定一个与每个元素 valarray 比较的第二个 valarrays。

返回值

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

要求

Header: <valarray>

命名空间: std

请参见

参考

stack::operator<