java.time.LocalDate.of() 方法示例



说明

java.time.LocalDate.of(int year, int month, int dayOfMonth) 方法从一个年份、月份和日期获取一个 LocalDate 实例对象。

声明

以下是 java.time.LocalDate.of(int year, int month, int dayOfMonth) 方法的声明。

public static LocalDate of(int year, int month, int dayOfMonth)

参数

  • year − 年份,从 MIN_YEAR 到 MAX_YEAR

  • month − 月份,从 1(1 月)到 12(12 月)

  • dayOfMonth − 月中天,从 1 到 31

返回值

本地日期,非空。

示例

以下示例展示了 java.time.LocalDate.of(int year, int month, int dayOfMonth) 方法的用法。

package com.tutorialspoint;

import java.time.LocalDate;

public class LocalDateDemo {
   public static void main(String[] args) {
	  
      LocalDate date = LocalDate.of(2017,2,3);
      System.out.println(date);  
   }
}

让我们编译并运行上面的程序,它将会生成以下结果 −

2017-02-03
打印页面