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


Java LocalTime atDate()用法及代码示例


LocalTime类的atDate()方法用于将此LocalTime对象与LocalDate对象组合以创建LocalDateTime。日期和时间的所有可能组合均有效。

用法:

public LocalDateTime atDate(LocalDate date)

参数:此方法接受单个参数date,该日期是与LocalTime Object组合的日期,而不是null。


返回值:组合LocalTime和LocalDate后,此方法返回LocalDateTime对象,而不是null。

以下示例程序旨在说明atDate()方法:
示例1:

// Java program to demonstrate 
// LocalTime.atDate() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Object 
        LocalTime time 
            = LocalTime.parse("09:32:42"); 
  
        // create LocalDate Object 
        LocalDate date 
            = LocalDate.parse("2018-12-05"); 
  
        // apply atDate() 
        LocalDateTime local 
            = time.atDate(date); 
  
        // print LocalDateTime 
        System.out.println("Date and Time:"
                           + local.toString()); 
    } 
}
输出:
Date and Time:2018-12-05T09:32:42

示例2:

// Java program to demonstrate 
// LocalTime.atDate() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Object 
        LocalTime time = LocalTime.parse("18:12:49"); 
  
        // create LocalDate Object 
        LocalDate date = LocalDate.parse("2017-12-05"); 
  
        // apply atDate() 
        LocalDateTime local = time.atDate(date); 
  
        // print LocalDateTime 
        System.out.println("Date and Time:"
                           + local.toString()); 
    } 
}
输出:
Date and Time:2017-12-05T18:12:49

参考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#atDate(java.time.LocalDate)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 LocalTime atDate() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。