Java YearMonth format()方法
Java中YearMonth类的format()方法用于根据指定的DateTimeFormatter来格式化这个YearMonth实例的年月,作为该方法的参数传递。
语法:
public String format(DateTimeFormatter formatter)
参数 :该方法接受一个参数 formatter ,它是DateTimeFormatter,这个YearMonth实例将根据它被格式化。
返回值 :在根据指定的formatter格式化之后,它返回这个YearMonth的值为一个字符串。
以下程序说明了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-