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<Type>va 的參考,,描述項目序列 valarray<Type> 物件中選取的物件。
您可以撰寫表單 VA [增效]的運算式只建構 mask_array<Type> 物件。 mask_array 類別的成員函式接著會與對應的函式簽章定義為 valarray<Type>,不過,選取的項目序列只會受到影響。
序列包含最多 ba.size 項目。 項目包括 J ,只有當 ba[J] 為 true。 因此,,因為在 ba,的項目會在序列中有多個項目。 如果 I 是最低的項目索引。 ba的,則 vaI[] 是元素零選取的序列。
範例:
// 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 ).
需求
標頭: <valarray>
命名空間: std