共用方式為


logical_or 結構

預先定義的功能物件在它的引數執行邏輯分離作業 (operator||)。

template<class Type = void>
   struct logical_or : public binary_function<Type, Type, bool> 
   {
      bool operator()(
         const Type& Left, 
         const Type& Right
      ) const;
   };

// specialized transparent functor for operator||
template<>
   struct logical_or<void>
   {
      template<class Type1, class Type2>
      auto operator()(Type1&& Left, Type2&& Right) const
         -> decltype(std::forward<Type1>(Left)
            || std::forward<Type2>(Right));
   };

參數

  • Type, Type1, Type2
    任何支援operator||接受指定或推斷型別的運算元。

  • Left
    邏輯分離運算的左運算元。 非特製化樣板接受型別 Type 的左值參考引數。 特製化樣板在左值和右值推斷型別 Type1 參考引數能完美轉送。

  • Right
    邏輯分離運算的右運算元。 非特製化樣板接受型別 Type 的左值參考引數。 特製化樣板在左值和右值推斷的型別 Type2參考引數能完美轉送。

傳回值

Left || Right 的結果。 特製化樣板能完善結果的轉送,其具有 operator||所傳回的型別。

備註

如為使用者定義型別,沒有運算元求值的捷徑。 兩個引數由 operator||運算。

範例

// functional_logical_or.cpp
// compile with: /EHsc
#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;

   int i;
   for ( i = 0 ; i < 7 ; i++ )
   {
      d1.push_back((bool)((rand() % 2) != 0));
   }

   int j;
   for ( j = 0 ; j < 7 ; j++ )
   {
      d2.push_back((bool)((rand() % 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 disjunction of the truth values
   // of d1 & d2, use the logical_or function object
   transform( d1.begin( ), d1.end( ), d2.begin( ),
      d3.begin( ), logical_or<bool>( ) );
   cout << "The deque which is the disjuction of d1 & d2 is:\n d3 = ( " ;
   for ( iter3 = d3.begin( ) ; iter3 != d3.end( ) ; iter3++ )
      cout << *iter3 << " ";
   cout << ")" << endl;
}
  

需求

標題: <functional>

命名空間: std

請參閱

參考

C++ 標準程式庫中的執行緒安全

標準樣板程式庫