indirect_array Class

支持对象是valarrays的子集通过提供在子集数组之间的操作的内部,从属模板选件类通过指定的父的索引的子集定义valarray。

template<class Type>
   class indirect_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<size_t>xa 一起,描述元素序列 valarray<Type> 对象中的对象。

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

该序列包括 xa.范围 元素,元素 I 成为索引 xa[]I在 va中。

示例:

// indirect_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;

   // Select 2nd, 4th & 6th elements
   // and assign a value of 10 to them
   valarray<size_t> indx ( 3 );
   indx [0] = 2;
   indx [1] = 4;
   indx [2] = 6;
   va[indx] = 10;

   cout << "The modified operand valarray is:  ( ";
      for (i = 0 ; i < 10 ; i++ )
         cout << va [ i ] << " ";
   cout << ")." << endl;
}

c2sh653a.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 10 -1 10 -1 10 -1 8 -1 ).

要求

标头: <valarray>

命名空间: std

请参见

参考

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