std::chrono::ambiguous_local_time
来自 cppreference.com
定义在头文件 <chrono> 中 |
||
class ambiguous_local_time; |
(自 C++20 起) | |
定义一种类型的对象,作为异常抛出以报告尝试在没有指定 std::chrono::choose (例如 choose::earliest
或 choose::latest
) 的情况下将不明确的 std::chrono::local_time 转换为 std::chrono::sys_time。
此异常由 std::chrono::time_zone::to_sys 以及调用它的函数 (如 std::chrono::zoned_time 的构造函数,该构造函数接受 std::chrono::local_time) 抛出。
继承图
内容 |
[编辑] 成员函数
(构造函数) |
构造异常对象 (公有成员函数) |
operator= |
替换异常对象 (公有成员函数) |
what |
返回解释性字符串 (公有成员函数) |
std::chrono::ambiguous_local_time::ambiguous_local_time
template< class Duration > ambiguous_local_time( const std::chrono::local_time<Duration>& tp, |
(1) | (自 C++20 起) |
ambiguous_local_time( const ambiguous_local_time& other ) noexcept; |
(2) | (自 C++20 起) |
构造异常对象。
1) 由 what() 返回的解释性字符串等效于以下代码执行后由 os.str() 生成的字符串
std::ostringstream os; os << tp << " is ambiguous. It could be\n" << tp << ' ' << i.first.abbrev << " == " << tp - i.first.offset << " UTC or\n" << tp << ' ' << i.second.abbrev << " == " << tp - i.second.offset << " UTC";
如果 i.result != std::chrono::local_info::ambiguous,则行为未定义。
2) 复制构造函数。如果 *this 和
other
的动态类型均为 std::chrono::ambiguous_local_time
,则在复制后,std::strcmp(what(), other.what()) == 0。参数
tp | - | 尝试转换的时间点 |
i | - | 描述转换尝试结果的 std::chrono::local_info |
other | - | 要复制的另一个 ambiguous_local_time |
异常
可能抛出 std::bad_alloc
备注
由于不允许复制从 std::exception 派生的标准库类时抛出异常,因此此消息通常在内部存储为单独分配的引用计数字符串。
std::chrono::ambiguous_locale_time::operator=
ambiguous_locale_time& operator=( const ambiguous_locale_time& other ) noexcept; |
(自 C++20 起) | |
将内容分配为 other 的内容。如果 *this 和 other 的动态类型均为 std::chrono::ambiguous_locale_time
,则在分配后,std::strcmp(what(), other.what()) == 0。
参数
other | - | 要分配的另一个异常对象 |
返回值
*this
std::chrono::ambiguous_locale_time::what
virtual const char* what() const noexcept; |
(自 C++20 起) | |
返回解释性字符串。
参数
(无)
返回值
指向一个以 null 结尾的字符串,包含解释性信息。该字符串适合转换为 std::wstring 并显示。该指针在获取异常对象时至少有效,直到该异常对象被销毁,或直到对异常对象的非 const 成员函数(例如复制赋值运算符)被调用。
备注
实现可以,但不要求重写 what()
。
继承自 std::exception
成员函数
[virtual] |
销毁异常对象 ( std::exception 的虚拟公共成员函数) |
[virtual] |
返回解释性字符串 ( std::exception 的虚拟公共成员函数) |
[编辑] 参见
(C++20) |
抛出异常以报告本地时间不存在 (类) |