java.text.CollationElementIterator類的next()方法用於獲取下一個Collator元素。此方法將迭代器推到下一個元素並返回其值。
用法:
public int next()
參數:此方法確實接受任何參數。
返回值:此方法以整數值返回下一個整理器元素的值。
下麵是說明next()方法的示例:
範例1:
// Java program to demonstrate next() 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 initializing
// CollationElementIterator
CollationElementIterator cel
= rbc.getCollationElementIterator(test);
// setting offset to index 4
cel.setOffset(1);
// display the result
System.out.println("current offset before"
+ " calling next() "
+ cel.getOffset());
// getting offset of the next collator element
// using next() method
int value = cel.next();
// display the result
System.out.println("\ncurrent element value"
+ " after calling next() "
+ value);
}
}
輸出:
current offset before calling next() 1 current element value after calling next() 5439488
範例2:
// Java program to demonstrate next() 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 initializing
// CollationElementIterator
CollationElementIterator cel
= rbc.getCollationElementIterator(test);
// setting offset to index 4
cel.setOffset(2);
// display the result
System.out.println("current offset before"
+ " calling next() "
+ cel.getOffset());
// getting offset of the next collator element
// using next() method
int value = cel.next();
// display the result
System.out.println("\ncurrent offset after"
+ " calling next() "
+ cel.getOffset());
}
}
輸出:
current offset before calling next() 2 current offset after calling next() 3
參考: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#next-
相關用法
- Java CollationElementIterator tertiaryOrder()用法及代碼示例
- Java CollationElementIterator previous()用法及代碼示例
- Java CollationElementIterator getOffset()用法及代碼示例
- Java CollationElementIterator reset()用法及代碼示例
- Java CollationElementIterator setOffset()用法及代碼示例
- Java CollationElementIterator primaryOrder()用法及代碼示例
- Java CollationElementIterator getMaxExpansion()用法及代碼示例
- Java CollationElementIterator secondaryOrder()用法及代碼示例
- Java CollationElementIterator setText(String)用法及代碼示例
- Java CollationElementIterator setText(CharacterIterator)用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java lang.Long.byteValue()用法及代碼示例
- Java Java lang.Long.reverse()用法及代碼示例
- Java Java lang.Long.builtcount()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 CollationElementIterator next() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。