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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。