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-
相關用法
- Java DayOfWeek getValue()用法及代碼示例
- Java AbstractMap.SimpleEntry getValue()用法及代碼示例
- Java Month getValue()用法及代碼示例
- Java Year get()用法及代碼示例
- Java Year with()用法及代碼示例
- Java Year from()用法及代碼示例
- Java Year of()用法及代碼示例
- Java Year now()用法及代碼示例
- Java Year until()用法及代碼示例
- Java Year length()用法及代碼示例
- Java Year toString()用法及代碼示例
- Java Year isAfter()用法及代碼示例
- Java Year query()用法及代碼示例
- Java Year isLeap()用法及代碼示例
- Java Year plus(TemporalAmount)用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Year getValue() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。