operator!= (<valarray>)

测试对应的元素的两个是否具有相同的大小valarrays不相等或所有元素的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
    元素是为不相等测试中的第一valarrays。

  • _Right
    元素是为不相等测试的两个valarrays。

返回值

valarray布尔值,每个都是:

  • true,如果对应的元素不相等。

  • false,如果对应的元素不是不相等的。

备注

第一个模板运算符返回选件类 valarray<bool>对象,其中每个元素 I 是 _LeftI] [! = _Right[]I。

元素中的第二模板运算符存储 我_LeftI] [! = _Right。

元素中的第三个模板运算符存储 我_Left ! = _Right[]I。

示例

// valarray_op_ne.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 not equal comparison test is the\n valarray: ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << vaNE [ i ] << " ";
   cout << ")." << endl;
}
  
  
  

要求

标头: <valarray>

命名空间: std