当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.time.LocalDate.of()用法及代码示例



描述

这个java.time.LocalDate.of(int year, Month month, int dayOfMonth)方法从年、月和日获取 LocalDate 的实例。

声明

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

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

参数

  • year- 代表的年份,从 MIN_YEAR 到 MAX_YEAR

  • month- month-of-year 代表

  • dayOfMonth- day-of-month 代表,从 1 到 31

返回值

本地日期,不为空。

示例

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

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.Month;

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

让我们编译并运行上面的程序,这将产生以下结果 -

2017-02-03

相关用法


注:本文由纯净天空筛选整理自 java.time.LocalDate.of() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。