位置:首頁 > Java技術 > java.lang > java.lang.StringBuffer.codePointCount()方法實例

java.lang.StringBuffer.codePointCount()方法實例

java.lang.StringBuffer.codePointCount() 方法在這個序列中的指定文本範圍內返回Unicode代碼點的數量。文本範圍始於指定 beginIndex 並延伸到將char在索引 endIndex - 1. 這樣的文本範圍的長度(以字符)是 endIndex - beginIndex.

聲明

以下是java.lang.StringBuffer.codePointCount()方法的聲明

public int codePointCount(int beginIndex, int endIndex)

參數

  • beginIndex -- 這是該索引在文本範圍的第一個字符。

  • endIndex -- 這是文本範圍的最後一個字符之後的索引。

返回值

這個方法返回指定的文本範圍的Unicode代碼點的數量。

異常

  • NA

例子

下麵的例子顯示java.lang.StringBuffer.codePointCount()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringBufferDemo {

  public static void main(String[] args) {
  
    StringBuffer buff = new StringBuffer("TUTORIALS");
    System.out.println("buffer = " + buff);

    // returns the codepoint count from index 1 to 5
    int retval = buff.codePointCount(1, 5);
    System.out.println("Count = " + retval);
    
    buff = new StringBuffer("amrood admin ");
    System.out.println("buffer = " + buff);
    // returns the codepoint count from index 3 to 9
    retval = buff.codePointCount(3, 9);
    System.out.println("Count = " + retval);
  }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

buffer = TUTORIALS
Count = 4
buffer = amrood admin
Count = 6