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


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


java.text.Collat​​ionElementIterator类的reset()方法用于将迭代器的光标重置为输入字符串的开头。

用法:

public void reset()

参数:此方法不接受任何参数。


返回值:此方法无返回值。

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

范例1:

// Java program to demonstrate 
// reset() 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 = "abcd"; 
  
        // creating and initializing 
        // RuleBasedCollator object 
        RuleBasedCollator rbc 
            = (RuleBasedCollator)(Collator.getInstance()); 
  
        // creating and intiallizing 
        // CollationElementIterator 
        CollationElementIterator cel 
            = rbc.getCollationElementIterator(test); 
  
        // setting cursor of iterator 
        cel.setOffset(2); 
        cel.next(); 
  
        // display the result 
        System.out.println( 
            "current offset before calling reset() "
            + cel.getOffset()); 
  
        // reset the cursor to the 
        // beginning of the string 
        // using reset() method 
        cel.reset(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent offset after calling reset() "
            + cel.getOffset()); 
    } 
}
输出:
current offset before calling reset() 3

current offset after calling reset() 0

范例2:

// Java program to demonstrate 
// reset() 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 = "abcd"; 
  
        // creating and initializing 
        // RuleBasedCollator object 
        RuleBasedCollator rbc 
            = (RuleBasedCollator)(Collator.getInstance()); 
  
        // creating and intiallizing 
        // CollationElementIterator 
        CollationElementIterator cel 
            = rbc.getCollationElementIterator(test); 
  
        // setting cursor of iterator 
        cel.setOffset(3); 
        cel.previous(); 
  
        // display the result 
        System.out.println( 
            "current offset before calling reset() "
            + cel.getOffset()); 
  
        // reset the cursor to the beginning of the string 
        // using reset() method 
        cel.reset(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent offset after calling reset() "
            + cel.getOffset()); 
    } 
}
输出:
current offset before calling reset() 2

current offset after calling reset() 0

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



相关用法


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