operator==,!=(std::function)
提供: cppreference.com
< cpp | utility | functional | function
template< class R, class... ArgTypes > bool operator==( const std::function<R(ArgTypes...)>& f, std::nullptr_t ) noexcept; |
(1) | (C++11以上) |
template< class R, class... ArgTypes > bool operator==( std::nullptr_t, const std::function<R(ArgTypes...)>& f ) noexcept; |
(2) | (C++11以上) |
template< class R, class... ArgTypes > bool operator!=( const std::function<R(ArgTypes...)>& f, std::nullptr_t ) noexcept; |
(3) | (C++11以上) |
template< class R, class... ArgTypes > bool operator!=( std::nullptr_t, const std::function<R(ArgTypes...)>& f ) noexcept; |
(4) | (C++11以上) |
std::function
をNULLポインタと比較します。 空の function
(つまり、 callable なターゲットを持っていない function
) は等しくなります。 空でない function
は等しくなりません。
[編集] 引数
f | - | 比較する std::function
|
[編集] 戻り値
1-2) !f
3-4) (bool) f
[編集] 例
Run this code
#include <functional> #include <iostream> using SomeVoidFunc = std::function<void(int)>; class C { public: C(SomeVoidFunc void_func = nullptr) : void_func_(void_func) { if (void_func_ == nullptr) { // specialized compare with nullptr void_func_ = std::bind(&C::default_func, this, std::placeholders::_1); } void_func_(7); } void default_func(int i) { std::cout << i << '\n'; }; private: SomeVoidFunc void_func_; }; void user_func(int i) { std::cout << (i + 1) << '\n'; } int main() { C c1; C c2(user_func); }
出力:
7 8