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


Java YearMonth format()用法及代碼示例


Java中的YearMonth類的format()方法用於根據作為參數傳遞給此方法的year-month的指定DateTimeFormatter來格式化YearMonth實例。

用法

public String format(DateTimeFormatter formatter)

參數:此方法接受單個參數格式程序,該格式程序是DateTimeFormatter,根據該格式將格式化Yearyear實例。


返回值:根據指定的格式化程序格式化後,它將Yearyear的值作為字符串返回。

以下程序說明了Java中YearMonth的format()方法:
示例1:

// Program to illustrate the format() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Create a DateTimeFormatter string 
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yy/MM"); 
  
        // Format this year-month 
        System.out.println(thisYearMonth.format(formatter)); 
    } 
}
輸出:
17/08

示例2:

// Program to illustrate the format() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2018, 5); 
  
        // Create a DateTimeFormatter string 
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MM/yy"); 
  
        // Format this year-month 
        System.out.println(thisYearMonth.format(formatter)); 
    } 
}
輸出:
05/18

參考: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#format-java.time.format.DateTimeFormatter-



相關用法


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