共用方式為


valarray::shift

從區域的指定數目將 valarray 的所有項目。

valarray<Type> shift(
   int _Count
) const;

參數

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

傳回值

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

備註

_Count 的正值將項目保持 _Count 位置,零的填色。

_Count 負數值傳輸項目正確的位置, _Count 有零填滿的。

範例

// valarray_shift.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(10) is: ( ";
      for ( i = 0 ; i < 10 ; i++ )
         cout << va1 [ i ] << " ";
   cout << ")." << endl;

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

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

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

需求

標題: <valarray>

命名空間: std

請參閱

參考

valarray Class