命名空间
变体
操作

std::chrono::nonexistent_local_time

来自 cppreference.com
< cpp‎ | chrono
 
 
工具库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
日期和时间工具
时间点
(C++11)
(C++20)
持续时间
(C++11)
时钟
(C++20)
(C++20)
(C++20)
(C++20)
一天中的时间
(C++20)(C++20)
(C++20)(C++20)
(C++20)

日历
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
时区
(C++20)
(C++20)
(C++20)(C++20)(C++20)(C++20)  
(C++20)
(C++20)
nonexistent_local_time
(C++20)
(C++20)
(C++20)
chrono I/O
(C++20)
C 风格日期和时间
 
在头文件 <chrono> 中定义
class nonexistent_local_time;
(自 C++20 起)

定义了一种类型的对象,用作异常,以报告尝试将不存在的 std::chrono::local_time 转换为 std::chrono::sys_time,而没有指定 std::chrono::choose (例如 choose::earliestchoose::latest)。

此异常由 std::chrono::time_zone::to_sys 及其调用函数 (如使用 std::chrono::local_timestd::chrono::zoned_time 构造函数) 抛出。

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

继承图

内容

[编辑] 成员函数

(构造函数)
构造异常对象
(公有成员函数)
operator=
替换异常对象
(公有成员函数)
what
返回解释性字符串
(公有成员函数)

std::chrono::nonexistent_local_time::nonexistent_local_time

template< class Duration >

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

                        const std::chrono::local_info& i );
(1) (自 C++20 起)
nonexistent_local_time( const nonexistent_local_time& other ) noexcept;
(2) (自 C++20 起)

构造异常对象。

1)what() 返回的解释性字符串等效于在以下代码执行后由 os.str() 生成的字符串
std::ostringstream os;
os << tp << " is in a gap between\n"
   << std::chrono::local_seconds(i.first.end.time_since_epoch()) + i.first.offset
   << ' ' << i.first.abbrev << " and\n"
   << std::chrono::local_seconds(i.second.begin.time_since_epoch()) + i.second.offset
   << ' ' << i.second.abbrev
   << " which are both equivalent to\n"
   << i.first.end << " UTC";
如果 i.result != std::chrono::local_info::nonexistent,则行为未定义。
2) 复制构造函数。如果 *thisother 都是动态类型 std::chrono::nonexistent_local_time,则 std::strcmp(what(), other.what()) == 0

参数

tp - 尝试转换的时间点
i - 一个描述转换尝试结果的 std::chrono::local_info
other - 另一个要复制的 nonexistent_local_time

异常

可能抛出 std::bad_alloc

备注

由于不允许复制从 std::exception 派生的标准库类抛出异常,因此此消息通常在内部存储为单独分配的引用计数字符串。

std::chrono::nonexistent_locale_time::operator=

nonexistent_locale_time& operator=( const nonexistent_locale_time& other ) noexcept;
(自 C++20 起)

将内容赋值为 other 的内容。如果 *thisother 都是动态类型 std::chrono::nonexistent_locale_time,则在赋值后 std::strcmp(what(), other.what()) == 0

参数

other - 另一个要赋值的异常对象

返回值

*this

std::chrono::nonexistent_locale_time::what

virtual const char* what() const noexcept;
(自 C++20 起)

返回解释字符串。

参数

(无)

返回值

指向包含解释信息的以 null 结尾的字符串的指针。该字符串适合转换为 std::wstring 并显示。该指针保证至少在获得它的异常对象被销毁之前或在异常对象的非 const 成员函数(例如复制赋值运算符)被调用之前有效。

备注

实现可以重写 what(),但不是必需的。

继承自 std::runtime_error


继承自 std::exception

成员函数

销毁异常对象
(std::exception 的虚拟公共成员函数) [编辑]
[虚拟]
返回解释字符串
(std::exception 的虚拟公共成员函数) [编辑]

[编辑] 另请参阅

抛出的异常,报告本地时间存在歧义
(类) [编辑]