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