C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 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::scope_success<EF>::scope_success
- std::experimental::scope_success<EF>::~scope_success
- std::experimental::scope_success<EF>::release
- std::experimental::scope_success 的推导指引
- 并行扩展
- 并行扩展,版本 2
- std::experimental::sample
- std::experimental::to_array
- std::experimental::source_location
- std::experimental::not_fn
- std::experimental::future
- std::experimental::shared_future
- 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::scope_success > std::experimental::scope_success<EF>::scope_success
std::experimental::scope_success<EF>::scope_success
template <class Fn> explicit scope_success( Fn&& fn ) noexcept(/*see below*/); |
(1) | (库基础 TS v3) |
scope_success( scope_success&& other ) noexcept(/*see below*/); |
(2) | (库基础 TS v3) |
scope_success( const scope_success& ) = delete; |
(3) | (库基础 TS v3) |
从函数、函数对象或另一 scope_success
创建 scope_success
。
1) 以函数或函数对象初始化退出函数,并如同以 std::uncaught_exceptions() 初始化未捕捉异常计数。构造的
scope_success
为活跃。 若
Fn
不是左值引用类型且 std::is_nothrow_constructible_v<EF, Fn> 为 true ,则以 std::forward<Fn>(fn) ,否则以 fn 初始化存储的 EF
。 此重载仅若 std::is_same_v<std::remove_cvref_t<Fn>, scope_success> 为 false 且 std::is_constructible_v<EF, Fn> 为 true 才参与重载决议。
若函数调用表达式 fn() 为谬构,则程序为谬构。
若调用 fn() 导致未定义行为,则行为未定义,即使未调用
fn
。2) 移动构造函数。以
other
的存储的 EF
初始化存储的 EF
,并以 other
的未捕捉异常计数初始化未捕捉异常计数。构造的 scope_success
为活跃当且仅当 other
在构造前活跃。 若 std::is_nothrow_move_constructible_v<EF> 为 true ,则以 std::forward<EF>(other.exitfun) ,否则以 other.exitfun 初始化存储的
EF
(以 exitfun
代表)。 在成功移动构造后调用 other.release() 而
other
变为不活跃。 此重载仅若 std::is_nothrow_move_constructible_v<EF> 为 true 或 std::is_copy_constructible_v<EF> 为 true 才参与重载决议。
若有下列情况则行为未定义
- std::is_nothrow_move_constructible_v<EF> 为 true 而
EF
不满足可移动构造 (MoveConstructible) 的要求,或 - std::is_nothrow_move_constructible_v<EF> 为 false 而
EF
不满足可复制构造 (CopyConstructible) 的要求。
参数
fn | - | 用于初始化存储的 EF 的函数或函数对象
|
other | - | 要移动的 scope_success
|
异常
初始化存储的 EF
期间抛出的任何异常。
1)
noexcept 规定:
noexcept(std::is_nothrow_constructible_v<EF, Fn> ||
std::is_nothrow_constructible_v<EF, Fn&>)
std::is_nothrow_constructible_v<EF, Fn&>)
2)
noexcept 规定:
noexcept(std::is_nothrow_move_constructible_v<EF> ||
std::is_nothrow_copy_constructible_v<EF>)
std::is_nothrow_copy_constructible_v<EF>)
示例
本节未完成 原因:暂无示例 |
参阅
(C++20 中移除)(C++17) |
检查当前是否正在进行异常处理 (函数) |
使 scope_success 不活跃 (公开成员函数) |