将一个 slice_array 分配给另一个 slice_array 是否正确?

Is it correct to assign a slice_array to another slice_array?

int input[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
std::valarray<int> test(input, sizeof(input)/sizeof(input[0]));

const std::slice_array<int> s1 = test[std::slice(1, 3, 2)];
const std::slice_array<int> s2 = test[std::slice(0, 3, 1)];

// is it correct to do this?
s1 = s2;

std::valarray<int> temp(s1);
printf("temp[0]=%d  temp[1]=%d temp[2]=%d\n", temp[0], temp[1], temp[2]);

运行代码,我得到:

test: 0 1 2 3 4 5 6 7 8 9 

s1:     1   3   5

s2:   0 1 2 

s1=s2

s1:     0   0   2     --> 0 1 2 is expected for s1

test: 0 0 2 0 4 5 6 7 8 9 

我只是想知道 s1 = s2 使用是否正确?

如果使用正确,那么可以说这是我旧版本的 LLVM C++ 库的错误吗?

是的,您可以使用 operator=

将一个 std::slice_array 分配给另一个

Assigns the selected elements from sl_arr to the referred to elements of *this.

另外,这里没有错误,s1 = [0, 0, 2]的结果是正确的。

你的情况:

test { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }
s1        ^     ^     ^
s2     ^  ^  ^

注意 s2 引用的第一个元素是 0,它被分配给 s1 的第一个元素,它是 test 的第二个元素。

这个新分配的值就是 s2 的第二个值,它被分配给 s1 的第二个值,依此类推。

在赋值结束时,test变为

test { 0, 0, 2, 0, 4, 2, 6, 7, 8, 9 }