java.text.ChoiceFormat類的parse()方法用於獲取ChoiceFormat對象中特定格式的限製值。
用法:
public Number parse(String text, ParsePosition status)
參數:此方法采用以下參數:
- text:這是必須以字符串格式找到其極限值的文本。
- status:這是該選擇項在哪個索引上找到的極限值。
返回值:此方法返回指定類型的數組,該類型是附加到ChoiceFormat對象的格式。
異常:如果字符串文本或狀態為null,則此方法引發NullPointerException。
下麵是說明parse()方法的示例:
示例1:
// Java program to demonstrate
// getFormats() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing ChoiceFormat
ChoiceFormat cf1
= new ChoiceFormat(
"4#wed| 5#thu | 6#fri | 7#sat");
// creating and initializing ParsePosition
ParsePosition par = new ParsePosition(0);
// getting limit of particular format
// of ChoiceFormat Object
// using getFormats() method
Number limit
= cf1.parse("wed", par);
// display the result
System.out.print("limit: "
+ limit.intValue());
}
catch (NullPointerException e) {
System.out.println("\nString is Null");
System.out.println("Exception thrown: " + e);
}
}
}
輸出:
limit: 4
示例2:
// Java program to demonstrate
// getFormats() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing ChoiceFormat
ChoiceFormat cf1
= new ChoiceFormat(
"4#wed| 5#thu | 6#fri | 7#sat");
// creating and initializing ParsePosition
ParsePosition par = new ParsePosition(0);
// getting limit of particular format
// of ChoiceFormat Object
// using getFormats() method
Number limit
= cf1.parse(null, par);
// display the result
System.out.print("limit: "
+ limit.intValue());
}
catch (NullPointerException e) {
System.out.println("String is Null");
System.out.println("Exception thrown: " + e);
}
}
}
輸出:
String is Null Exception thrown: java.lang.NullPointerException
相關用法
- Java ChoiceFormat applyPattern()用法及代碼示例
- Java ChoiceFormat setChoices()用法及代碼示例
- Java ChoiceFormat format()用法及代碼示例
- Java ChoiceFormat previousDouble()用法及代碼示例
- Java ChoiceFormat getFormats()用法及代碼示例
- Java ChoiceFormat getLimits()用法及代碼示例
- Java ChoiceFormat equals()用法及代碼示例
- Java ChoiceFormat hashCode()用法及代碼示例
- Java ChoiceFormat nextDouble(double)用法及代碼示例
- Java ChoiceFormat nextDouble(double, boolean)用法及代碼示例
- Java Period parse()用法及代碼示例
- Java Instant parse()用法及代碼示例
- Java LocalDate parse()用法及代碼示例
- Java Level parse()用法及代碼示例
- Java OffsetTime parse()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ChoiceFormat parse() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。