Skip to content

Commit 1d8c2af

Browse files
committed
docs(temporal): edit text
1 parent a8f5e87 commit 1d8c2af

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

docs/temporal.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
# Temporal API
22

3-
Temporal 是一个表示日期时间的全新 API,对目前的 Date API 的诸多问题进行修正。
3+
Temporal 是一个表示时间日期的全新 API,对目前的 Date API 的诸多问题进行修正。
44

5-
它有几个核心概念。
5+
它包含了许多与时间日期相关的工具和方法,都放在 Temporal 对象下面,实际上是一个对象形式的命名空间。
6+
7+
Temporal API 将时间分成四种。
68

79
- 当前时间:表示此时此刻的时间,位于 Temporal.now 对象。
8-
- 时点(instant),表示历史上某个唯一时间,其中 Temporal.Instant 对象表示时间戳,Temporal.ZonedDateTime 表示带有时区的日期时间。
9-
- 时钟时间(wall-clock times),表示本地时间,包含以下几个对象,不涉及时区。
10+
- 时点时间(instant),表示历史上某个唯一时间,其中 Temporal.Instant 对象表示时间戳,Temporal.ZonedDateTime 表示带有时区的日期时间。
11+
- 本地时间(wall-clock times),包含以下几个对象,不涉及时区。
1012
- Temporal.PlainDateTime:完整的日期和时间。
1113
- Temporal.PlainDate:仅限于日期。
1214
- Temporal.PlainYearMonth:仅限于年月。
1315
- Temporal.PlainMonthDay:仅限于月和日。
1416
- Temporal.PlainTime:不包含日期的时间。
1517
- 持续时间(durations),表示两个时间点之间的差异,位于 Temporal.Duration 对象。
1618

19+
下面逐一介绍这些对象。
20+
1721
## Temporal.Now
1822

19-
`Temporal.Now`表示当前系统的准确时间
23+
`Temporal.Now`对象表示当前系统的准确时间,也就是现在的时间
2024

2125
- Temporal.Now.instant()- 获取当前系统准确时间
2226
- Temporal.Now.timeZoneId()- 获取当前系统时区

0 commit comments

Comments
 (0)