mask_array Class

支持对象是父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<Type>va,与对象选件类 valarray<bool>ba 一起,描述元素序列 valarray<Type> 对象中的对象。

通过编写窗体 VA [] ba的表达式只构造 mask_array<Type> 对象。 mask_array选件类的成员函数然后行为与对应的函数签名定义为 valarray<Type>,除此之外,所选元素仅序列会受到影响。

序列包含最多 ba.size 元素。 元素 J 中,仅当 baJ[]为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;
}

yxbhx0s5.collapse_all(zh-cn,VS.110).gifOutput

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 ).

要求

标头: <valarray>

命名空间: std

请参见

参考

线程安全性对标准C++库中