- java.time 包类
- java.time - 首页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬态时间
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 年龄段
- java.time - 年
- java.time - 年月
- java.time - 分时区日期时间
- java.time - 区域 ID
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月
- java.time 有用资源
- java.time - 讨论
java.time.Year.now() 方法示例
说明
java.time.Year.now(Clock clock) 方法从指定的时钟获取当前的年月。
声明
以下是 java.time.Year.now(Clock clock) 方法的声明。
public static Year now(Clock clock)
参数
clock - 要使用的时钟,非空。
返回值
当前年月,非空。
示例
以下示例展示了 java.time.Year.now(Clock clock) 方法的使用。
package com.tutorialspoint; import java.time.Clock; import java.time.Year; public class YearDemo { public static void main(String[] args) { Year date = Year.now(Clock.systemUTC()); System.out.println(date); } }
让我们编译并运行上述程序,这将产生以下结果 -
2017
广告