當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LocalDateTime toLocalDate()用法及代碼示例


LocalDateTime類的toLocalDate()方法用於獲取此LocalDateTime的LocalDate表示形式。此方法派生自Object Class,其行為類似。

用法:

public LocalDate toLocalDate()

參數:此方法不帶參數。


返回值:此方法返回LocalDate值,它是此LocalDateTime的LocalDate表示形式。

以下示例程序旨在說明LocalDateTime.toLocalDate()方法:

示例1:

// Program to illustrate the toLocalDate() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Get the LocalDateTime instance 
        LocalDateTime dt = LocalDateTime.now(); 
  
        // Get the LocalDate representation of this LocalDateTime 
        // using toLocalDate() method 
        System.out.println(dt.toLocalDate()); 
    } 
}
輸出:
2018-11-30

示例2:

// Program to illustrate the toLocalDate() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Get the LocalDateTime instance 
        LocalDateTime dt 
            = LocalDateTime 
                  .parse("2018-11-03T12:45:30"); 
  
        // Get the LocalDate representation of this LocalDateTime 
        // using toLocalDate() method 
        System.out.println(dt.toLocalDate()); 
    } 
}
輸出:
2018-11-03

參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#toLocalDate()



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 LocalDateTime toLocalDate() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。