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


Java Year toString()用法及代碼示例


Java中Year類的toString()方法用於返回Year對象的字符串表示形式。

用法

public String toString()

參數:此方法不接受任何參數。


返回值:它返回Year對象的字符串表示形式。

以下程序說明了Java中Year的toString()方法:

示例1:

// Program to illustrate the toString() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        Year thisYear = Year.of(2018); 
  
        // Print the string representation 
        System.out.println(thisYear.toString()); 
    } 
}
輸出:
2018

示例2:

// Program to illustrate the toString() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        Year thisYear = Year.of(1997); 
  
        // Print the string representation 
        System.out.println(thisYear.toString()); 
    } 
}
輸出:
1997

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



相關用法


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