CppDS.com

C++ 98 11 14 17 20 手册

std::chrono::year::operator+, std::chrono::year::operator-

来自cppreference.com
< cpp‎ | chrono‎ | year
 
 
日期和时间工具
(C++11)
(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 风格日期和时间
 
 
constexpr std::chrono::year operator+() noexcept;
(1) (C++20 起)
constexpr std::chrono::year operator-() noexcept;
(2) (C++20 起)

应用一元运算符到年份值。

1) 返回 *this 的副本。
2) 返回年份值为 *this 的年份值相反数的 year

返回值

1) *this
2) std::chrono::year(-int(*this))

示例

关闭