std::move_only_function<R(Args...) cv ref noexcept(noex)>::operator bool

来自cppreference.com
 
 
工具库
通用工具
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

初等字符串转换
(C++17)
(C++17)
栈踪
 
函数对象
函数包装
(C++11)
(C++11)
部分函数应用
(C++11)
(C++20)
函数调用
(C++17)(C++23)
恒等函数对象
(C++20)
引用包装
(C++11)(C++11)
通透运算符包装
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
取反器
(C++17)
搜索器
旧绑定器与适配器
(C++17 前)
(C++17 前)
(C++17 前)
(C++17 前)
(C++17 前)(C++17 前)(C++17 前)(C++17 前)
(C++20 前)
(C++20 前)
(C++17 前)(C++17 前)
(C++17 前)(C++17 前)

(C++17 前)
(C++17 前)(C++17 前)(C++17 前)(C++17 前)
(C++20 前)
(C++20 前)
 
 
explicit operator bool() const noexcept;
(C++23 起)

检查 *this 是否存储可调用目标,即非空。

参数

(none)

返回值

*this 存储可调用目标则为 true ,否则为 false

示例

#include <functional>
#include <iostream>
 
void sampleFunction()
{
    std::cout << "This is the sample function!\n";
}
 
void checkFunc( std::move_only_function<void() const> const &func )
{
    // Use operator bool to determine if callable target is available.
    if( func ) {
        std::cout << "Function is not empty! Calling function.\n";
        func();
    }
    else {
        std::cout << "Function is empty. Nothing to do.\n";
    }
}
 
int main()
{
    std::move_only_function<void() const> f1{};
    std::move_only_function<void() const> f2{ sampleFunction };
 
    std::cout << "f1: ";
    checkFunc(f1);
 
    std::cout << "f2: ";
    checkFunc(f2);
}

输出:

f1: Function is empty. Nothing to do.
f2: Function is not empty! Calling function.
This is the sample function!

参阅

检查是否包含了有效的目标
(std::function<R(Args...)> 的公开成员函数)