operator==,!=(std::function)
来自cppreference.com
< cpp | utility | functional | function
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class R, class... ArgTypes > bool operator==( const function<R(ArgTypes...)>& f, std::nullptr_t ); |
(1) | |
template< class R, class... ArgTypes > bool operator==( std::nullptr_t, const function<R(ArgTypes...)>& f ); |
(2) | |
template< class R, class... ArgTypes > bool operator!=( const function<R(ArgTypes...)>& f, std::nullptr_t ); |
(3) | |
template< class R, class... ArgTypes > bool operator!=( std::nullptr_t, const function<R(ArgTypes...)>& f ); |
(4) | |
用一个空指针比较
std::function
.原文:
Compares a
std::function
with a null pointer.[编辑] 参数
f | - | std::function 进行比较 |
[编辑] 返回值
1-2) !f
3-4) (bool) f
[编辑] 示例
本章尚未完成 原因:暂无示例 |