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


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


java.text.Collat​​ionElementIterator類的getOffset()方法用於獲取在Collat​​ionElementIterator當前指向的整理器上存在的項目的索引。

用法:

public int getOffset()

參數:此方法不接受任何參數。


返回值:此方法返回迭代器當前指向的元素的偏移量。

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

範例1:

// Java program to demonstrate getOffset() 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); 
  
        // setting offset to index 4 
        cel.setOffset(4); 
  
        // getting offset of cel 
        // using getOffset() method 
        int value = cel.getOffset(); 
  
        // display the result 
        System.out.println("current offset is "
                           + value); 
    } 
}
輸出:
current offset is 4

範例2:

// Java program to demonstrate getOffset() 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); 
  
        // setting offset to index 4 
        cel.setOffset(4); 
  
        // calling next element 
        cel.next(); 
  
        // getting offset of cel 
        // using getOffset() method 
        int value = cel.getOffset(); 
  
        // display the result 
        System.out.println("current offset is "
                           + value); 
    } 
}
輸出:
current offset is 5

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



相關用法


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