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


Java LocalDate withYear()用法及代码示例


Java中LocalDate类的withYear()方法返回更改了年份的该LocalDate的副本。

用法:

public LocalDate withYear(int year)

参数:此方法接受强制性参数year,该参数指定要在结果中设置的年份,范围可以从MIN_YEAR到MAX_YEAR。


返回值:该函数基于此日期和所请求的年份返回LocalDate,而不是null。

异常:年份值无效时,该函数引发DateTimeException。

以下示例程序旨在说明LocalDate.withYear()方法:

示例1:

// Program to illustrate the withYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        LocalDate dt1 = LocalDate.parse("2018-12-07"); 
        LocalDate result = dt1.withYear(2018); 
  
        // Prints the date with year 
        System.out.println("The date with year is: " + result); 
    } 
}
输出:
The date with year is: 2018-12-07

示例2:

// Program to illustrate the withYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        LocalDate dt1 = LocalDate.parse("2018-01-07"); 
        LocalDate result = dt1.withYear(2014); 
  
        // Prints the date with year 
        System.out.println("The date with year is: " + result); 
    } 
}
输出:
The date with year is: 2014-01-07

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



相关用法


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