开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
main
分支 (2)
main
gh-pages
main
分支 (2)
main
gh-pages
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
main
分支 (2)
main
gh-pages
Java-Notes
/
JavaSourceLearn
/
src
/
java
/
time
/
package-info.java
Java-Notes
/
JavaSourceLearn
/
src
/
java
/
time
/
package-info.java
package-info.java 13.28 KB
一键复制 编辑 原始数据 按行查看 历史
cxylk 提交于 2021年01月21日 16:33 +08:00 . :rainbow: idea构建jdk源码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
/*
* Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*
*
*
*
*
*
* Copyright (c) 2012, Stephen Colebourne & Michael Nascimento Santos
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of JSR-310 nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* <p>
* The main API for dates, times, instants, and durations.
* </p>
* <p>
* The classes defined here represent the principle date-time concepts,
* including instants, durations, dates, times, time-zones and periods.
* They are based on the ISO calendar system, which is the <i>de facto</i> world
* calendar following the proleptic Gregorian rules.
* All the classes are immutable and thread-safe.
* </p>
* <p>
* Each date time instance is composed of fields that are conveniently
* made available by the APIs. For lower level access to the fields refer
* to the {@code java.time.temporal} package.
* Each class includes support for printing and parsing all manner of dates and times.
* Refer to the {@code java.time.format} package for customization options.
* </p>
* <p>
* The {@code java.time.chrono} package contains the calendar neutral API
* {@link java.time.chrono.ChronoLocalDate ChronoLocalDate},
* {@link java.time.chrono.ChronoLocalDateTime ChronoLocalDateTime},
* {@link java.time.chrono.ChronoZonedDateTime ChronoZonedDateTime} and
* {@link java.time.chrono.Era Era}.
* This is intended for use by applications that need to use localized calendars.
* It is recommended that applications use the ISO-8601 date and time classes from
* this package across system boundaries, such as to the database or across the network.
* The calendar neutral API should be reserved for interactions with users.
* </p>
*
* <h3>Dates and Times</h3>
* <p>
* {@link java.time.Instant} is essentially a numeric timestamp.
* The current Instant can be retrieved from a {@link java.time.Clock}.
* This is useful for logging and persistence of a point in time
* and has in the past been associated with storing the result
* from {@link java.lang.System#currentTimeMillis()}.
* </p>
* <p>
* {@link java.time.LocalDate} stores a date without a time.
* This stores a date like '2010-12-03' and could be used to store a birthday.
* </p>
* <p>
* {@link java.time.LocalTime} stores a time without a date.
* This stores a time like '11:30' and could be used to store an opening or closing time.
* </p>
* <p>
* {@link java.time.LocalDateTime} stores a date and time.
* This stores a date-time like '2010-12-03T11:30'.
* </p>
* <p>
* {@link java.time.ZonedDateTime} stores a date and time with a time-zone.
* This is useful if you want to perform accurate calculations of
* dates and times taking into account the {@link java.time.ZoneId}, such as 'Europe/Paris'.
* Where possible, it is recommended to use a simpler class without a time-zone.
* The widespread use of time-zones tends to add considerable complexity to an application.
* </p>
*
* <h3>Duration and Period</h3>
* <p>
* Beyond dates and times, the API also allows the storage of periods and durations of time.
* A {@link java.time.Duration} is a simple measure of time along the time-line in nanoseconds.
* A {@link java.time.Period} expresses an amount of time in units meaningful
* to humans, such as years or days.
* </p>
*
* <h3>Additional value types</h3>
* <p>
* {@link java.time.Month} stores a month on its own.
* This stores a single month-of-year in isolation, such as 'DECEMBER'.
* </p>
* <p>
* {@link java.time.DayOfWeek} stores a day-of-week on its own.
* This stores a single day-of-week in isolation, such as 'TUESDAY'.
* </p>
* <p>
* {@link java.time.Year} stores a year on its own.
* This stores a single year in isolation, such as '2010'.
* </p>
* <p>
* {@link java.time.YearMonth} stores a year and month without a day or time.
* This stores a year and month, such as '2010-12' and could be used for a credit card expiry.
* </p>
* <p>
* {@link java.time.MonthDay} stores a month and day without a year or time.
* This stores a month and day-of-month, such as '--12-03' and
* could be used to store an annual event like a birthday without storing the year.
* </p>
* <p>
* {@link java.time.OffsetTime} stores a time and offset from UTC without a date.
* This stores a date like '11:30+01:00'.
* The {@link java.time.ZoneOffset ZoneOffset} is of the form '+01:00'.
* </p>
* <p>
* {@link java.time.OffsetDateTime} stores a date and time and offset from UTC.
* This stores a date-time like '2010-12-03T11:30+01:00'.
* This is sometimes found in XML messages and other forms of persistence,
* but contains less information than a full time-zone.
* </p>
*
* <h3>Package specification</h3>
* <p>
* Unless otherwise noted, passing a null argument to a constructor or method in any class or interface
* in this package will cause a {@link java.lang.NullPointerException NullPointerException} to be thrown.
* The Javadoc "@param" definition is used to summarise the null-behavior.
* The "@throws {@link java.lang.NullPointerException}" is not explicitly documented in each method.
* </p>
* <p>
* All calculations should check for numeric overflow and throw either an {@link java.lang.ArithmeticException}
* or a {@link java.time.DateTimeException}.
* </p>
*
* <h3>Design notes (non normative)</h3>
* <p>
* The API has been designed to reject null early and to be clear about this behavior.
* A key exception is any method that takes an object and returns a boolean, for the purpose
* of checking or validating, will generally return false for null.
* </p>
* <p>
* The API is designed to be type-safe where reasonable in the main high-level API.
* Thus, there are separate classes for the distinct concepts of date, time and date-time,
* plus variants for offset and time-zone.
* This can seem like a lot of classes, but most applications can begin with just five date/time types.
* <ul>
* <li>{@link java.time.Instant} - a timestamp</li>
* <li>{@link java.time.LocalDate} - a date without a time, or any reference to an offset or time-zone</li>
* <li>{@link java.time.LocalTime} - a time without a date, or any reference to an offset or time-zone</li>
* <li>{@link java.time.LocalDateTime} - combines date and time, but still without any offset or time-zone</li>
* <li>{@link java.time.ZonedDateTime} - a "full" date-time with time-zone and resolved offset from UTC/Greenwich</li>
* </ul>
* <p>
* {@code Instant} is the closest equivalent class to {@code java.util.Date}.
* {@code ZonedDateTime} is the closest equivalent class to {@code java.util.GregorianCalendar}.
* </p>
* <p>
* Where possible, applications should use {@code LocalDate}, {@code LocalTime} and {@code LocalDateTime}
* to better model the domain. For example, a birthday should be stored in a code {@code LocalDate}.
* Bear in mind that any use of a {@linkplain java.time.ZoneId time-zone}, such as 'Europe/Paris', adds
* considerable complexity to a calculation.
* Many applications can be written only using {@code LocalDate}, {@code LocalTime} and {@code Instant},
* with the time-zone added at the user interface (UI) layer.
* </p>
* <p>
* The offset-based date-time types {@code OffsetTime} and {@code OffsetDateTime},
* are intended primarily for use with network protocols and database access.
* For example, most databases cannot automatically store a time-zone like 'Europe/Paris', but
* they can store an offset like '+02:00'.
* </p>
* <p>
* Classes are also provided for the most important sub-parts of a date, including {@code Month},
* {@code DayOfWeek}, {@code Year}, {@code YearMonth} and {@code MonthDay}.
* These can be used to model more complex date-time concepts.
* For example, {@code YearMonth} is useful for representing a credit card expiry.
* </p>
* <p>
* Note that while there are a large number of classes representing different aspects of dates,
* there are relatively few dealing with different aspects of time.
* Following type-safety to its logical conclusion would have resulted in classes for
* hour-minute, hour-minute-second and hour-minute-second-nanosecond.
* While logically pure, this was not a practical option as it would have almost tripled the
* number of classes due to the combinations of date and time.
* Thus, {@code LocalTime} is used for all precisions of time, with zeroes used to imply lower precision.
* </p>
* <p>
* Following full type-safety to its ultimate conclusion might also argue for a separate class
* for each field in date-time, such as a class for HourOfDay and another for DayOfMonth.
* This approach was tried, but was excessively complicated in the Java language, lacking usability.
* A similar problem occurs with periods.
* There is a case for a separate class for each period unit, such as a type for Years and a type for Minutes.
* However, this yields a lot of classes and a problem of type conversion.
* Thus, the set of date-time types provided is a compromise between purity and practicality.
* </p>
* <p>
* The API has a relatively large surface area in terms of number of methods.
* This is made manageable through the use of consistent method prefixes.
* <ul>
* <li>{@code of} - static factory method</li>
* <li>{@code parse} - static factory method focussed on parsing</li>
* <li>{@code get} - gets the value of something</li>
* <li>{@code is} - checks if something is true</li>
* <li>{@code with} - the immutable equivalent of a setter</li>
* <li>{@code plus} - adds an amount to an object</li>
* <li>{@code minus} - subtracts an amount from an object</li>
* <li>{@code to} - converts this object to another type</li>
* <li>{@code at} - combines this object with another, such as {@code date.atTime(time)}</li>
* </ul>
* <p>
* Multiple calendar systems is an awkward addition to the design challenges.
* The first principle is that most users want the standard ISO calendar system.
* As such, the main classes are ISO-only. The second principle is that most of those that want a
* non-ISO calendar system want it for user interaction, thus it is a UI localization issue.
* As such, date and time objects should be held as ISO objects in the data model and persistent
* storage, only being converted to and from a local calendar for display.
* The calendar system would be stored separately in the user preferences.
* </p>
* <p>
* There are, however, some limited use cases where users believe they need to store and use
* dates in arbitrary calendar systems throughout the application.
* This is supported by {@link java.time.chrono.ChronoLocalDate}, however it is vital to read
* all the associated warnings in the Javadoc of that interface before using it.
* In summary, applications that require general interoperation between multiple calendar systems
* typically need to be written in a very different way to those only using the ISO calendar,
* thus most applications should just use ISO and avoid {@code ChronoLocalDate}.
* </p>
* <p>
* The API is also designed for user extensibility, as there are many ways of calculating time.
* The {@linkplain java.time.temporal.TemporalField field} and {@linkplain java.time.temporal.TemporalUnit unit}
* API, accessed via {@link java.time.temporal.TemporalAccessor TemporalAccessor} and
* {@link java.time.temporal.Temporal Temporal} provide considerable flexibility to applications.
* In addition, the {@link java.time.temporal.TemporalQuery TemporalQuery} and
* {@link java.time.temporal.TemporalAdjuster TemporalAdjuster} interfaces provide day-to-day
* power, allowing code to read close to business requirements:
* </p>
* <pre>
* LocalDate customerBirthday = customer.loadBirthdayFromDatabase();
* LocalDate today = LocalDate.now();
* if (customerBirthday.equals(today)) {
* LocalDate specialOfferExpiryDate = today.plusWeeks(2).with(next(FRIDAY));
* customer.sendBirthdaySpecialOffer(specialOfferExpiryDate);
* }
*
* </pre>
*
* @since JDK1.8
*/
package java.time;
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

Java学习过程中遇到的知识点总结,复习笔记
暂无标签
Apache-2.0
使用 Apache-2.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

语言

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cxylk/Java-Notes.git
git@gitee.com:cxylk/Java-Notes.git
cxylk
Java-Notes
Java-Notes
main
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /