共用方式為


unary_negate (STL/CLR)

樣板類別將告訴您 functor,呼叫時,會傳回邏輯不屬於其預存的引數 functor。 使用指定的預存的 functor 的角度來看一個函式物件。

template<typename Fun>
    ref class unary_negate
    { // wrap operator()
public:
    typedef Fun stored_function_type;
    typedef typename Fun::argument_type argument_type;
    typedef bool result_type;
    typedef Microsoft::VisualC::StlClr::UnaryDelegate<
        argument_type, result_type>
        delegate_type;

    unary_negate(Fun% functor);
    unary_negate(unary_negate<Fun>% right);

    result_type operator()(argument_type left);
    operator delegate_type^();
    };

參數

  • 娛樂特區
    預存的 functor 型別。

成員函式

型別定義

描述

argument_type

Functor 引數的型別。

delegate_type

泛型委派型別。

result_type

Functor 結果的型別。

成員

描述

unary_negate

建構的 functor。

運算子

描述

operator)

計算所需的函式。

delegate_type ^

轉換成委派 functor。

備註

樣板類別描述儲存另一個引數的 functor 引數 functor。 它定義了成員運算子operator()這麼一來,該物件做為函式呼叫時,它會傳回邏輯不是預存的 functor 呼叫與引數。

您也可以傳遞物件做為函式引數,其型別是delegate_type^ ,它會被適當地進行轉換。

範例

// cliext_unary_negate.cpp 
// compile with: /clr 
#include <cliext/algorithm> 
#include <cliext/functional> 
#include <cliext/vector> 
 
typedef cliext::vector<int> Myvector; 
int main() 
    { 
    Myvector c1; 
    c1.push_back(4); 
    c1.push_back(0); 
    Myvector c3(2, 0); 
 
// display initial contents " 4 0" 
    for each (int elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// transform and display 
    cliext::logical_not<int> not_op; 
 
    cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(), 
        cliext::unary_negate<cliext::logical_not<int> >(not_op)); 
    for each (int elem in c3) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// transform and display with function 
    cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(), 
        cliext::not1(not_op)); 
    for each (int elem in c3) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/功能 >

Namespace: cliext

請參閱

參考

not1 (STL/CLR)