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


Java BreakIterator next()用法及代码示例


java.text.BreakIterator类的next()方法用于获取当前边界(通过调用current()方法检索的边界)之前的下一个边界的索引。它提供了边界第一个字符的偏移量,该偏移量紧随BreakIterator指向的当前边界。

用法:

public abstract 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 with zero 
        int current = 0, next = 0; 
  
        // creating and initializing BreakIterator 
        BreakIterator wb 
            = BreakIterator.getWordInstance(); 
  
        // setting text for BreakIterator 
        wb.setText("Code  Geeks"); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "current position before"
            + " calling next() : "
            + current); 
  
        // calling next method 
        next = wb.next(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 1st next() : "
            + next); 
  
        // calling next method 
        next = wb.next(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 2nd next() : "
            + next); 
    } 
}
输出:
current position before calling next() : 0

current position after calling 1st next() : 4

current position after calling 2nd next() : 6

示例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 with zero 
        int current = 0, next = 0; 
  
        // creating and initializing BreakIterator 
        BreakIterator wb 
            = BreakIterator.getWordInstance(); 
  
        // setting text for BreakIterator 
        wb.setText("GeeksForGeeks"); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "current position before"
            + " calling next() : "
            + current); 
  
        // calling next method 
        next = wb.next(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 1st next() : "
            + next); 
  
        // calling next method 
        next = wb.next(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 2nd next() : "
            + next); 
    } 
}
输出:
current position before calling next() : 0

current position after calling 1st next() : 13

current position after calling 2nd next() : -1

参考: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#next–



相关用法


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