C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 并行扩展
- 并行扩展,版本 2
- std::experimental::sample
- std::experimental::to_array
- std::experimental::source_location
- std::experimental::not_fn
- std::experimental::future
- std::experimental::shared_future
- C++ 标准库扩展
- std::experimental::pmr::resource_adaptor
- std::experimental::invocation_type, std::experimental::raw_invocation_type
- C++ 标准库扩展,版本 2
- std::experimental::propagate_const
- std::experimental::ostream_joiner
- std::experimental::randint
- std::experimental::observer_ptr
- std::experimental::is_detected, std::experimental::detected_t, std::experimental::detected_or
- C++ 标准库扩展,版本 3
- std::experimental::scope_exit
- std::experimental::scope_fail
- std::experimental::scope_success
- std::experimental::unique_resource
- 并发扩展
- 制约与概念
- 范围扩展
- std::experimental::function
- std::experimental::nonesuch
- std::experimental::reseed
- std::experimental::shuffle
- std::experimental::when_all
- std::experimental::barrier
- std::experimental::latch
- std::experimental::make_array
- 数学特殊函数
- 文件系统库
- std::experimental::erased_type
- std::experimental::when_any
- std::experimental::make_ready_future
- std::experimental::make_exceptional_future
- std::experimental::flex_barrier
- 注释
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >实验性 C++ 特性 > std::experimental::invocation_type, std::experimental::raw_invocation_type
std::experimental::invocation_type, std::experimental::raw_invocation_type
定义于头文件 <experimental/type_traits>
|
||
template<class> struct raw_invocation_type; // 不定义 |
(1) | (库基础 TS) |
template<class> struct invocation_type; // 不定义 |
(2) | (库基础 TS) |
在以参数 ArgTypes...
调用 Fn
,如在 INVOKE(std::declval<Fn>(), std::declval<ArgTypes>()...) 中时计算调用形参,其中 INVOKE 是 可调用 (Callable) 中定义的操作。
表达式 INVOKE(f, t1, t2, ..., tN) 的调用形参定义如下,其中 T1
是(可有 cv 限定的) t1
的类型,而若 t1
为左值则 U1
为 T1&
,否则为 T1&&
:
- 若
f
是指向类T
成员函数的指针,则调用参数是U1
后随t2, ..., tN
所匹配的f
的形参。 - 若
N == 1
且f
为指向类T
数据成员的指针,则调用形参为U1
。 - 若
f
为类类型对象,则调用形参为在f
的代理调用函数和函数调用运算符间,实参t1, ..., tN
的最佳可达函数的匹配t1, ..., tN
的形参。 - 所有其他情况下,调用形参是
f
的匹配t1, ..., tN
的形参。
若实参 tI
匹配函数形参列表中的省略号,则对应的调用形参是应用默认参数提升到 tI
的结果。
Fn
和 ArgTypes
中的所有类型能为完整类型、未知边界数组或(可有 cv 限定的) void
。
成员类型
成员类型 | 定义 |
raw_invocation_type<Fn(ArgTypes...)>::type | R(T1, T2, ...) ,其中:
仅若能在不求值语境中以 |
invocation_type<Fn(ArgTypes...)>::type | R(U1, U2, ...) ,其中
仅若能在不求值语境中以 |
辅助类型
template< class T > using raw_invocation_type_t = typename raw_invocation_type<T>::type; |
(库基础 TS) | |
template< class T > using invocation_type_t = typename invocation_type<T>::type; |
(库基础 TS) | |
示例
本节未完成 原因:暂无示例 |