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


Java Year getValue()用法及代码示例


Java中Year类的getValue()方法用于获取当前Year对象的整数值。

用法

public int getValue()

参数:此方法不接受任何参数。


返回值:它返回一个整数,表示当前年份对象的值。

以下程序说明了Java中Year的getValue()方法:

示例1:

// Program to illustrate the getvalue() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year firstYear = Year.of(1997); 
  
        // Print the value of the current year 
        // using getValue() method 
        System.out.println(firstYear.getValue()); 
    } 
}
输出:
1997

示例2:

// Program to illustrate the getvalue() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year firstYear = Year.of(2018); 
  
        // Print the value of the current year 
        // using getValue() method 
        System.out.println(firstYear.getValue()); 
    } 
}
输出:
2018

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#getValue-



相关用法


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