共用方式為


bit_xor Function

傳回兩個參數的值的二進位 XOR。

template<class Type>
    struct bit_xor : public binary_function< Type, Type, Type > {
        Type operator()(
            const Type& _Left, 
            const Type& _Right
        ) const;
    };

參數

  • _Left
    第一個參數的 lvalue 參考。

  • _Right
    第二個參數的 lvalue 參考。

傳回值

傳回兩個參數的值的二進位 XOR。

備註

樣板類別定義其成員函式的傳回 _Left^_Right。

需求

標題: <functional>

命名空間: std

請參閱

參考

<functional>

值和 Rvalues

標準樣板程式庫