java.text.ChoiceFormat類的getFormats()方法用於在初始化時獲取ChoiceFormat對象的附加格式。它提供指定類型的數組。
用法:
public Object[] getFormats()
參數:此方法不接受任何參數。
返回值:此方法返回指定類型的數組,該類型是附加到ChoiceFormat對象的格式。
下麵是說明getFormats()方法的示例:
示例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)
{
// creating and initializing ChoiceFormat
ChoiceFormat cf1
= new ChoiceFormat(
"4#wed| 5#thu | 6#fri | 7#sat");
// getting format attached
// to the ChoiceFormat
// using getFormats() method
String[] format
= (String[])cf1.getFormats();
// display the result
System.out.print("Format: "
+ Arrays.toString(format));
}
}
輸出:
Format: [wed, thu , fri , sat]
示例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)
{
// creating and initializing limit
double[] limit = { 1, 2, 3, 4 };
// creating and initializing format
String[] format
= { "add", "sub",
"multiply", "divide" };
// creating and initializing ChoiceFormat
ChoiceFormat cf
= new ChoiceFormat(limit, format);
// getting format attached
// to the ChoiceFormat
// using getFormats() method
String[] forma
= (String[])cf.getFormats();
// display the result
System.out.print("Format: "
+ Arrays.toString(forma));
}
}
輸出:
Format: [add, sub, multiply, divide]
參考: https://docs.oracle.com/javase/9/docs/api/java/text/ChoiceFormat.html#getFormats–
相關用法
- Java ChoiceFormat equals()用法及代碼示例
- Java ChoiceFormat hashCode()用法及代碼示例
- Java ChoiceFormat getLimits()用法及代碼示例
- Java ChoiceFormat applyPattern()用法及代碼示例
- Java ChoiceFormat previousDouble()用法及代碼示例
- Java ChoiceFormat setChoices()用法及代碼示例
- Java ChoiceFormat format()用法及代碼示例
- Java ChoiceFormat parse()用法及代碼示例
- Java ChoiceFormat nextDouble(double)用法及代碼示例
- Java ChoiceFormat nextDouble(double, boolean)用法及代碼示例
- Java MessageFormat getFormats()用法及代碼示例
- Java Java lang.Long.byteValue()用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java.util.Collections.rotate()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ChoiceFormat getFormats() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。