java.text.Collator类的getInstance()方法用于获取具有当前默认语言环境的新整理对象。
用法:
public static Collator getInstance()
参数:此方法不接受任何参数。
返回值:它提供了具有当前默认语言环境的新整理者对象。
下面是说明getInstance()方法的示例:
范例1:
// Java program to demonstrate
// getInstance() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initalizing new simple rule
String simple = "< a< b< c< d";
// Creating and initializing
// new RuleBasedCollator Object
RuleBasedCollator col_1
= new RuleBasedCollator(simple);
// Creating and initializing Collator Object
// using getInstance() mehtod
Collator col_2 = Collator.getInstance();
// display result
if (col_1.equals(col_2))
System.out.println(col_1
+ " is equal to "
+ col_2);
else
System.out.println(col_1
+ " is not equal to "
+ col_2);
}
catch (ClassCastException e) {
System.out.println("Exception thrown:" + e);
}
catch (ParseException e) {
System.out.println("Exception thrown:" + e);
}
}
}
输出:
java.text.RuleBasedCollator@5eb2e1c2 is not equal to java.text.RuleBasedCollator@289747d6
范例2:
// Java program to demonstrate
// getInstance() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing Collator Object
Collator col_1 = Collator.getInstance();
// Creating and initializing Collator Object
Collator col_2 = Collator.getInstance();
// display result
if (col_1.equals(col_2))
System.out.println(
col_1
+ " is equal to "
+ col_2);
else
System.out.println(
col_1
+ " is not equal to "
+ col_2);
}
catch (ClassCastException e) {
System.out.println("Exception thrown:" + e);
}
}
}
输出:
java.text.RuleBasedCollator@289747d6 is equal to java.text.RuleBasedCollator@289747d6
参考: https://docs.oracle.com/javase/9/docs/api/java/text/Collator.html#getInstance-
相关用法
- Java Collator getInstance(Locale)用法及代码示例
- Java KeyFactory getInstance()用法及代码示例
- Java Currency getInstance()用法及代码示例
- Java SecureRandom getInstance()用法及代码示例
- Java Signature getInstance()用法及代码示例
- Java DecimalFormatSymbols getInstance()用法及代码示例
- Java AlgorithmParameterGenerator getInstance()用法及代码示例
- Java AlgorithmParameters getInstance()用法及代码示例
- Java MessageDigest getInstance()用法及代码示例
- Java Calendar getInstance()用法及代码示例
- Java NumberFormat getInstance()用法及代码示例
- Java KeyPairGenerator getInstance()用法及代码示例
- Java Collator setStrength()用法及代码示例
- Java Collator getStrength()用法及代码示例
- Java Collator getAvailableLocales()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Collator getInstance() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。