命名空间
变体
操作

std::valarray<T>::shift

来自 cppreference.com
< cpp‎ | numeric‎ | valarray
 
 
 
 
valarray<T> shift( int count ) const;

返回一个新的 valarray,大小相同,元素位置偏移 count 个元素。每个元素的新位置为 i−count,其中 i 是之前的位置。偏移元素的值为 T().

内容

[编辑] 参数

count - 元素偏移的位置数

[编辑] 返回值

具有偏移元素的结果 valarray。

[编辑] 注释

该函数可以使用与 std::valarray 不同的返回类型来实现。在这种情况下,替换类型具有以下属性

[编辑] 示例

#include <iostream>
#include <valarray>
 
int main()
{
    std::valarray<int> v{1, 2, 3, 4, 5, 6, 7, 8};
 
    for (auto const& val : v)
        std::cout << val << ' ';
    std::cout << '\n';
 
    std::valarray<int> v2 = v.shift(2);
 
    for (auto const& val : v2)
        std::cout << val << ' ';
    std::cout << '\n';
}

输出

1 2 3 4 5 6 7 8 
3 4 5 6 7 8 0 0

[编辑] 另请参阅

valarray 元素的循环移位
(公有成员函数) [编辑]