indirect_array
类
一个内部的辅助类模板,该类通过提供子集阵列(通过指定父级 valarray
的索引子集进行定义)之间的操作来支持作为 valarray
对象的子集的对象。
语法
备注
该类描述的对象将存储对 valarray<Type>
类的对象 va
及 valarray<size_t>
类的对象 xa
的引用,它描述了要从 valarray<Type>
对象中选择的元素序列。
只通过写入 va[xa]
形式的表达式即可构造 indirect_array<Type>
对象。 然后 indirect_array
类的成员函数的行为方式就类似于为 valarray<Type>
定义的对应的函数签名,只不过仅所选的元素的序列受到影响。
此序列由 xa.size
元素组成,其中元素 I
在 va
内成为索引 xa[I]
。
示例:
// 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;
}
输出
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