📌  相关文章
📜  Java中的 CollationElementIterator setText(CharacterIterator) 方法与示例

📅  最后修改于: 2022-05-13 01:55:39.664000             🧑  作者: Mango

Java中的 CollationElementIterator setText(CharacterIterator) 方法与示例

Java.text.CollationElementIterator类的setText()方法用于为 CollationElementIterator 对象设置新的源字符串进行迭代。

句法:

public void setText(CharacterIterator source)

参数:此方法采用一个新的CharacterIterator 对象,该对象包含迭代器将对其进行迭代的字符串值。

返回值:此方法没有任何返回值。

以下是说明setText()方法的示例:

示例 1:

// Java program to demonstrate
// setText() 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);
  
        // creating and initializing
        // CharacterIterator object
        CharacterIterator str
            = new StringCharacterIterator("Code");
  
        // setting new text using
        // setText() method
        cel.setText(str);
  
        // for iteration
        for (int i = 1; i <= str.getEndIndex(); i++) {
  
            // getting primary component of every elmenet
            // using primaryOrder() method
            int value
                = CollationElementIterator
                      .primaryOrder(cel.next());
  
            // display the reslut
            System.out.println("primary order "
                               + "for order "
                               + i + " is "
                               + value);
        }
    }
}
输出:
primary order for order 1 is 84
primary order for order 2 is 97
primary order for order 3 is 85
primary order for order 4 is 87

示例 2:

// Java program to demonstrate
// setText() 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);
  
        // creating and initializing
        // CharacterIterator object
        CharacterIterator str
            = new StringCharacterIterator("GeeksForGeeks");
  
        // setting new text using
        // setText() method
        cel.setText(str);
  
        // for iteration
        for (int i = 1; i <= str.getEndIndex(); i++) {
  
            // getting primary component of every elmenet
            // using primaryOrder() method
            int value
                = CollationElementIterator
                      .primaryOrder(cel.next());
  
            // display the reslut
            System.out.println("primary order "
                               + "for order "
                               + i + " is "
                               + value);
        }
    }
}
输出:
primary order for order 1 is 89
primary order for order 2 is 87
primary order for order 3 is 87
primary order for order 4 is 93
primary order for order 5 is 101
primary order for order 6 is 88
primary order for order 7 is 97
primary order for order 8 is 100
primary order for order 9 is 89
primary order for order 10 is 87
primary order for order 11 is 87
primary order for order 12 is 93
primary order for order 13 is 101

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