operator<< (<valarray>)
왼쪽의 비트는 지정 된 수의 위치 또는 지정 하는 두 번째 valarray element-wise 양 valarray의 각 요소에 대 한 이동 합니다.
template<class Type>
valarray<Type> operator<<(
const valarray<Type>& _Left,
const valarray<Type>& _Right
);
template<class Type>
valarray<Type> operator<<(
const valarray<Type>& _Left,
const Type& _Right
);
template<class Type>
valarray<Type> operator<<(
const Type& _Left,
const valarray<Type>& _Right
);
매개 변수
_Left
이동할 값 또는 요소를 이동할 수 인 valarray._Right
왼쪽된 shift 또는 왼쪽된 시프트 element-wise 양을 해당 요소를 나타내는 valarray의 크기를 나타내는 값입니다.
반환 값
지정 된 크기 만큼 왼쪽 요소가 이동 되는 valarray.
설명
부호 있는 숫자를 유지 하는 기호 있습니다.
예제
// valarray_op_ls.cpp
// compile with: /EHsc
#include <valarray>
#include <iostream>
int main( )
{
using namespace std;
int i;
valarray<int> vaL ( 8 ), vaR ( 8 );
valarray<int> vaNE ( 8 );
for ( i = 0 ; i < 8 ; i += 2 )
vaL [ i ] = 1;
for ( i = 1 ; i < 8 ; i += 2 )
vaL [ i ] = -1;
for ( i = 0 ; i < 8 ; i++ )
vaR [ i ] = i;
cout << "The initial Left valarray is: ( ";
for ( i = 0 ; i < 8 ; i++ )
cout << vaL [ i ] << " ";
cout << ")." << endl;
cout << "The initial Right valarray is: ( ";
for ( i = 0 ; i < 8 ; i++ )
cout << vaR [ i ] << " ";
cout << ")." << endl;
vaNE = ( vaL << vaR );
cout << "The element-by-element result of "
<< "the left shift is the\n valarray: ( ";
for ( i = 0 ; i < 8 ; i++ )
cout << vaNE [ i ] << " ";
cout << ")." << endl;
}
요구 사항
헤더: <valarray>
네임 스페이스: std