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&&
的任何類型,其接受指定或推斷類型的運算元。
Left
邏輯結合運算的左運算元。 未指定的範本會採用 Type 類型的左值參考自變數。 特製化範本會完美轉送推斷類型 T 的左值和右值參考自變數。
Right
邏輯結合運算的右運算元。 未指定的範本會採用 Type 類型的左值參考自變數。 特製化範本會完美轉送推斷類型 U 的左值和右值參考自變數。
傳回值
Left && Right
的結果。 此特製化的範本會完美地轉送結果,其具有 operator&&
所傳回的類型。
備註
針對使用者定義的類型,並沒有任何最少運算的運算元評估。 兩個引數都是由 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 )