java.time.ZonedDateTime.toLocalDate() 方法示例



说明

java.time.ZonedDateTime.toLocalDate() 方法获取此日期时间段的 LocalDate 部分。

声明

以下是 java.time.ZonedDateTime.toLocalDate() 方法的声明。

public LocalDate toLocalDate()

返回值

此日期时间的日期部分(不能为空)。

示例

以下示例展示了 java.time.ZonedDateTime.toLocalDate() 方法的使用。

package com.tutorialspoint;

import java.time.ZonedDateTime;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
 
      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date.toLocalDate());  
   }
}

我们来编译并运行以上程序,这将生成以下结果 −

2017-03-28
广告