C++ 参考手册

位置:首页 > C++ 参考手册 >日期和时间工具 > std::chrono::ambiguous_local_time

定义于头文件 <chrono>
class ambiguous_local_time;
(C++20 起)

定义要作为异常抛出的对象类型,以报告试图转换有歧义的 std::chrono::local_timestd::chrono::sys_time 而不指定 std::chrono::choose (如 choose::earliestchoose::latest )。

std::chrono::time_zone::to_sys 和调用它的函数(例如接收 std::chrono::zoned_timestd::chrono::local_time 构造函数)抛出此异常。

cpp/error/exceptioncpp/error/runtime errorstd-chrono-ambiguous local time-inheritance.svg

继承图

成员函数

(构造函数)
构造异常对象
(公开成员函数)

std::chrono::ambiguous_local_time::ambiguous_local_time

template< class Duration >

ambiguous_local_time(const std::chrono::local_time<Duration>& tp,

                     const std::chrono::local_info& i);

构造异常对象。 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";

因为不容许复制派生自 std::exception 的标准库类抛出异常,此信息通常在内部存储为分离分配的引用计数字符串。

i.result != std::chrono::local_info::ambiguous 则行为未定义。

参数

tp - 试图转换的时间点
i - 描述转换尝试的结果的 std::chrono::local_info

异常

可能抛出 std::bad_alloc