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


Java BreakIterator current()用法及代碼示例


java.text.BreakIterator類的current()方法用於獲取單詞行中最近文本邊界的索引。它提供BreakIterator當前指向的文本的偏移量。

用法:

public abstract int current()

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


返回值:此方法提供最近文本邊界的索引。

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

示例1:

// Java program to demonstrate current() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing integer with zero 
        int current = 0, last = 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 
        last = wb.next(); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 1st next(): "
            + current); 
  
        // calling next method 
        last = wb.next(); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 2nd next(): "
            + current); 
    } 
}
輸出:
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 current() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing integer with zero 
        int current = 0, last = 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 
        last = wb.next(); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 1st next(): "
            + current); 
  
        // calling next method 
        last = wb.next(); 
  
        // getting the current text boundary 
        current = wb.current(); 
  
        // display the result 
        System.out.println( 
            "\ncurrent position after"
            + " calling 2nd next(): "
            + current); 
    } 
}
輸出:
current position before calling next(): 0

current position after calling 1st next(): 13

current position after calling 2nd next(): 13

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



相關用法


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