Java中的句点 parse() 方法及示例
Period 类的parse()方法用于从给定字符串中以PnYnMnD的形式获取一个周期,其中 nY 表示 n 年,nM 表示 n 个月,nD 表示 n 天。
句法:
public static Period parse(CharSequence text)
参数:此方法接受单个参数文本,即要解析的字符串。
返回:此函数返回作为参数给出的字符串的解析表示形式的句点
下面是 Period.parse() 方法的实现:
示例 1:
// Java code to demonstrate parse() method
// to obtain period from given string
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the String to be parsed
String period = "P1Y2M21D";
// Parse the String into Period
// using parse() method
Period p = Period.parse(period);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
1 Years
2 Months
21 Days
示例 2:
// Java code to demonstrate parse() method
// to obtain period from given string
import java.time.Period;
class GFG {
public static void main(String[] args)
{
// Get the String to be parsed
String period = "-P1Y2M21D";
// Parse the String into Period
// using parse() method
Period p = Period.parse(period);
System.out.println(p.getYears() + " Years\n"
+ p.getMonths() + " Months\n"
+ p.getDays() + " Days");
}
}
输出:
-1 Years
-2 Months
-21 Days
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/Period.html#parse-java.lang.CharSequence-