mask_array 类

支持对象是的子集 valarrays 父,指定与布尔表达式,通过提供了子集之间操作的内部,辅助模板类范围。

template<class Type>
   class mask_array {
public:
   typedef Type value_type;
   void operator=(
      const valarray<Type>& x
   ) const;

   void operator=(
      const Type& x
   ) const;

   void operator*=(
      const valarray<Type>& x
   ) const;

   void operator/=(
      const valarray<Type>& x
   ) const;

   void operator%=(
      const valarray<Type>& x
   ) const;

   void operator+=(
      const valarray<Type>& x
   ) const;

   void operator-=(
      const valarray<Type>& x
   ) const;

   void operator^=(
      const valarray<Type>& x
   ) const;

   void operator&=(
      const valarray<Type>& x
   ) const;

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

   void operator<<=(
      const valarray<Type>& x
   ) const;

   void operator>>=(
      const valarray<Type>& x
   ) const;

// The rest is private or implementation defined
}

备注

类描述对象以及类 valarray<bool>ba 一起存储为对象类 valarray<类型>va 的引用,描述元素序列。valarrayType<> 对象中的对象。

通过窗体编写 VA [] ba的表达式只构造 mask_array<Type> 对象。 mask_array 类成员的行为像函数然后相应的函数签名定义为 valarray<Type>,但选择的元素序列仅受影响。

序列包括最 ba.size 元素。 元素 J J] [ ba中,仅在为 true。 因此,尽管具有,在 ba,的 true 的元素序列中有许多元素。 如果 I 是最低的元素的索引。的 ba,则 va[I] 为元素归零调整选定的序列。

示例:

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

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

   valarray<int> va ( 10 );
   for ( i = 0 ; i < 10 ; i += 2 )
      va [ i ] =  i;
   for ( i = 1 ; i < 10 ; i += 2 )
      va [ i ] =  -1;
   
   cout << "The initial operand valarray is:  ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << va [ i ] << " ";
   cout << ")." << endl;

   // Use masked subsets to assign a value of 10
   // to all elements grrater than 3 in value
   va [va > 3 ] = 10;
   cout << "The modified operand valarray is:  ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << va [ i ] << " ";
   cout << ")." << endl;
}

Output

The initial operand valarray is:  ( 0 -1 2 -1 4 -1 6 -1 8 -1 ).
The modified operand valarray is:  ( 0 -1 2 -1 10 -1 10 -1 10 -1 ).

要求

Header: <valarray>

命名空间: std

请参见

参考

C++ 标准库中的线程安全