java.lang.Character.isValidCodePoint()方法範例


java.lang.Character.isValidCodePoint(int codePoint) 確定指定的程式碼點是否是一個有效的Unicode程式碼點值。

宣告

以下是java.lang.Character.isValidCodePoint()方法的宣告

public static boolean isValidCodePoint(int codePoint)

引數

  • codePoint - 要進行測試的Unicode程式碼點

返回值

如果指定的程式碼點值在MIN_CODE_POINT和MAX_CODE_POINT(含)之間此方法返回true,否則返回false。

異常

  • NA

例子

下面的例子顯示lang.Character.isValidCodePoint()方法的使用。

package com.yiibai;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create 2 int primitives cp1, cp2
      int cp1, cp2;

      // assign values to cp1, cp2
      cp1 = 0x0123;
      cp2 = 0x123fff;

      // create 2 boolean primitives b1, b2
      boolean b1, b2;

      /**
       *  check if cp1, cp2 are valid Unicode code points 
       *  and assign results to b1, b2
       */
      b1 = Character.isValidCodePoint(cp1);
      b2 = Character.isValidCodePoint(cp2);

      String str1 = "cp1 is a valid Unicode code point is " + b1;
      String str2 = "cp2 is a valid Unicode code point is " + b2;

      // print b1, b2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

cp1 is a valid Unicode code point is true
cp2 is a valid Unicode code point is false