logical_and 구조체
인수에 대한 논리 결합 연산(operator&&
)을 수행하는 미리 정의된 함수 개체입니다.
구문
template <class Type = void>
struct logical_and : public binary_function<Type, Type, bool>
{
bool operator()(const Type& Left, const Type& Right) const;
};
// specialized transparent functor for operator&&
template <>
struct logical_and<void>
{
template <class T, class U>
auto operator()(T&& Left, U&& Right) const
-> decltype(std::forward<T>(Left) && std::forward<U>(Right));
};
매개 변수
Type, T, U
지정되었거나 유추된 형식의 피연산자를 가져오는 operator&&
를 지원하는 모든 형식입니다.
왼쪽
논리곱 연산의 왼쪽 피연산자입니다. 지정되지 않은 템플릿은 형식 형식의 lvalue 참조 인수를 사용합니다. 특수화된 템플릿은 유추된 T 형식의 lvalue 및 rvalue 참조 인수를 완벽하게 전달합니다.
오른쪽
논리곱 연산의 오른쪽 피연산자입니다. 지정되지 않은 템플릿은 형식 형식의 lvalue 참조 인수를 사용합니다. 특수화된 템플릿은 유추된 형식 U의 lvalue 및 rvalue 참조 인수를 완벽하게 전달합니다.
Return Value
Left && Right
의 결과입니다. 특수화된 템플릿은 operator&&
에 의해 반환되는 형식을 가지고 있는 결과를 완벽하게 전달합니다.
설명
사용자 정의 형식의 경우 피연산자 평가의 단락(short-circuiting)이 없습니다. 두 인수 모두 operator&&
로 평가됩니다.
예제
// functional_logical_and.cpp
// compile with: /EHsc
#define _CRT_RAND_S
#include <stdlib.h>
#include <deque>
#include <algorithm>
#include <functional>
#include <iostream>
int main( )
{
using namespace std;
deque<bool> d1, d2, d3( 7 );
deque<bool>::iterator iter1, iter2, iter3;
unsigned int randomValue;
int i;
for ( i = 0 ; i < 7 ; i++ )
{
if ( rand_s( &randomValue ) == 0 )
{
d1.push_back((bool)(( randomValue % 2 ) != 0));
}
}
int j;
for ( j = 0 ; j < 7 ; j++ )
{
if ( rand_s( &randomValue ) == 0 )
{
d2.push_back((bool)(( randomValue % 2 ) != 0));
}
}
cout << boolalpha; // boolalpha I/O flag on
cout << "Original deque:\n d1 = ( " ;
for ( iter1 = d1.begin( ) ; iter1 != d1.end( ) ; iter1++ )
cout << *iter1 << " ";
cout << ")" << endl;
cout << "Original deque:\n d2 = ( " ;
for ( iter2 = d2.begin( ) ; iter2 != d2.end( ) ; iter2++ )
cout << *iter2 << " ";
cout << ")" << endl;
// To find element-wise conjunction of the truth values
// of d1 & d2, use the logical_and function object
transform( d1.begin( ), d1.end( ), d2.begin( ),
d3.begin( ), logical_and<bool>( ) );
cout << "The deque which is the conjunction of d1 & d2 is:\n d3 = ( " ;
for ( iter3 = d3.begin( ) ; iter3 != d3.end( ) ; iter3++ )
cout << *iter3 << " ";
cout << ")" << endl;
}
Original deque:
d1 = ( true true true true true false false )
Original deque:
d2 = ( true false true true false true false )
The deque which is the conjunction of d1 & d2 is:
d3 = ( true false true true false false false )