當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java CollationElementIterator secondaryOrder()用法及代碼示例


java.text.Collat​​ionElementIterator類的secondaryOrder()方法用於提供Collat​​ionElementIterator對象的每個Collison元素的輔助組件。

用法:

public static final short secondaryOrder(int order)

參數:此方法將排序規則元素作為整數格式的參數,必須為其找到輔助成分。


返回值:此方法返回特定Collison元素的輔助組件。

下麵是說明secondaryOrder()方法的示例:

範例1:

// Java program to demonstrate 
// secondaryOrder() 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 secondary component of every elmenet 
            // using secondaryOrder() method 
            int value 
                = CollationElementIterator 
                      .secondaryOrder(cel.next()); 
  
            // display the reslut 
            System.out.println("secondary order "
                               + "for order "
                               + i + " is "
                               + value); 
        } 
    } 
}
輸出:
secondary order for order 1 is 0
secondary order for order 2 is 0
secondary order for order 3 is 0
secondary order for order 4 is 0
secondary order for order 5 is 0
secondary order for order 6 is 0
secondary order for order 7 is 0
secondary order for order 8 is 0
secondary order for order 9 is 0
secondary order for order 10 is 0
secondary order for order 11 is 0
secondary order for order 12 is 0
secondary order for order 13 is 0

範例2:

// Java program to demonstrate 
// secondaryOrder() 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 
            = "Code Geeks 123<>?"; 
  
        // 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 secondary component of every elmenet 
            // using secondaryOrder() method 
            int value 
                = CollationElementIterator 
                      .secondaryOrder(cel.next()); 
  
            // display the reslut 
            System.out.println("secondary order "
                               + "for order "
                               + i + " is "
                               + value); 
        } 
    } 
}
輸出:
secondary order for order 1 is 0
secondary order for order 2 is 0
secondary order for order 3 is 0
secondary order for order 4 is 0
secondary order for order 5 is 1
secondary order for order 6 is 0
secondary order for order 7 is 0
secondary order for order 8 is 0
secondary order for order 9 is 0
secondary order for order 10 is 0
secondary order for order 11 is 1
secondary order for order 12 is 0
secondary order for order 13 is 0
secondary order for order 14 is 0
secondary order for order 15 is 0
secondary order for order 16 is 0
secondary order for order 17 is 0


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



相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 CollationElementIterator secondaryOrder() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。