当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java CollationElementIterator tertiaryOrder()用法及代码示例


java.text.Collat​​ionElementIterator类的tertiaryOrder()方法用于提供Collat​​ionElementIterator对象的每个归类元素的三级分量。

用法:

public static final short tertiaryOrder(int order)

参数:此方法将排序规则元素作为整数格式的参数,必须为其找到三次分量。


返回值:此方法返回特定Collison元素的tertialry组件。

下面是说明tertiaryOrder()方法的示例:

范例1:

// Java program to demonstrate 
// tertiaryOrder() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing testString 
        String test = "GeeksForGeeks"; 
  
        // creating and initializing 
        // RuleBasedCollator object 
        RuleBasedCollator rbc 
            = (RuleBasedCollator)(Collator.getInstance()); 
  
        // creating and initializing 
        // CollationElementIterator 
        CollationElementIterator cel 
            = rbc.getCollationElementIterator(test); 
  
        // for iteration 
        for (int i = 1; i <= test.length(); i++) { 
  
            // getting tertiary component of every elmenet 
            // using tertiaryOrder() method 
            int value 
                = CollationElementIterator 
                      .tertiaryOrder(cel.next()); 
  
            // display the reslut 
            System.out.println("tertiary order "
                               + "for order "
                               + i + " is "
                               + value); 
        } 
    } 
}
输出:
tertiary order for order 1 is 1
tertiary order for order 2 is 0
tertiary order for order 3 is 0
tertiary order for order 4 is 0
tertiary order for order 5 is 0
tertiary order for order 6 is 1
tertiary order for order 7 is 0
tertiary order for order 8 is 0
tertiary order for order 9 is 1
tertiary order for order 10 is 0
tertiary order for order 11 is 0
tertiary order for order 12 is 0
tertiary order for order 13 is 0

范例2:

// Java program to demonstrate 
// tertiaryOrder() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing testString 
        String test = "aBcDeFgH<>?:"; 
  
        // creating and initializing 
        // RuleBasedCollator object 
        RuleBasedCollator rbc 
            = (RuleBasedCollator)(Collator.getInstance()); 
  
        // creating and initializing 
        // CollationElementIterator 
        CollationElementIterator cel 
            = rbc.getCollationElementIterator(test); 
  
        // for iteration 
        for (int i = 1; i <= test.length(); i++) { 
  
            // getting tertiary component of every elmenet 
            // using tertiaryOrder() method 
            int value 
                = CollationElementIterator 
                      .tertiaryOrder(cel.next()); 
  
            // display the reslut 
            System.out.println("tertiary order "
                               + "for order "
                               + i + " is "
                               + value); 
        } 
    } 
}
输出:
tertiary order for order 1 is 0
tertiary order for order 2 is 1
tertiary order for order 3 is 0
tertiary order for order 4 is 1
tertiary order for order 5 is 0
tertiary order for order 6 is 1
tertiary order for order 7 is 0
tertiary order for order 8 is 1
tertiary order for order 9 is 0
tertiary order for order 10 is 0
tertiary order for order 11 is 0
tertiary order for order 12 is 0

参考: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#tertiaryOrder-int-



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 CollationElementIterator tertiaryOrder() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。