共用方式為


valarray::cshift

定期將依位置的指定數目將 valarray 的所有項目。

valarray<Type> cshift(
   int _Count
) const;

參數

  • _Count
    區域的 quantity 項目要向前移位。

傳回值

新 valarray 在其中的所有項目都是移動的 _Count 位置會定期將給予設定之前, valarray 左與其在 valarray 這個運算元的位置。

備註

_Count 的正值傳輸項目會定期將保留的 _Count 位置。

_Count 負數值傳輸項目會定期將正確的 _Count 位置。

範例

// valarray_cshift.cpp
// compile with: /EHsc

#include <valarray>
#include <iostream>

int main()
{
    using namespace std;
    int i;

    valarray<int> va1(10), va2(10);
    for (i = 0; i < 10; i+=1)
        va1[i] = i;
    for (i = 0; i < 10; i+=1)
        va2[i] = 10 - i;

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

    // A positive parameter shifts elements right
    va1 = va1.cshift(4);
    cout << "The cyclically shifted valarray va1 is:\nva1.cshift (4) = (";
    for (i = 0; i < 10; i++)
        cout << " " << va1[i];
    cout << ")" << endl;

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

    // A negative parameter shifts elements left
    va2 = va2.cshift(-4);
    cout << "The cyclically shifted valarray va2 is:\nva2.shift (-4) = (";
    for (i = 0; i < 10; i++)
        cout << " " << va2[i];
    cout << ")" << endl;
}
  

需求

標題: <valarray>

命名空間: std

請參閱

參考

valarray Class