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
相關用法
- Java YearMonth getMonth()用法及代碼示例
- Java YearMonth until()用法及代碼示例
- Java YearMonth getMonthValue()用法及代碼示例
- Java YearMonth hashCode()用法及代碼示例
- Java YearMonth getYear()用法及代碼示例
- Java YearMonth equals()用法及代碼示例
- Java YearMonth with()用法及代碼示例
- Java YearMonth atEndOfMonth()用法及代碼示例
- Java YearMonth compareTo()用法及代碼示例
- Java YearMonth atDay()用法及代碼示例
- Java YearMonth isLeapYear()用法及代碼示例
- Java YearMonth isValidDay()用法及代碼示例
- Java YearMonth query()用法及代碼示例
- Java YearMonth isBefore()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 YearMonth format() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。