java.lang.Character.isLowerCase(int codePoint)方法實例
java.lang.Character.isLowerCase(int codePoint) 確定指定字符(Unicode代碼點)是否為小寫字母。
一個字符是小寫,如果它的一般類彆類型,通過getType(codePoint)所提供的LOWERCASE_LETTER,或屬性為Other_Lowercase Unicode標準的定義。
聲明
以下是java.lang.Character.isLowerCase()方法的聲明
public static boolean isLowerCase(int codePoint)
參數
-
codePoint - 字符(Unicode代碼點)進行測試
返回值
如果字符是小寫此方法返回true,否則返回false。
異常
-
NA
例子
下麵的例子顯示lang.Character.isLowerCase()方法的使用。
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 = 0x007a; cp2 = 0x0fff; // create 2 boolean primitives b1, b2 boolean b1, b2; /** * check if cp1, cp2 represents lowercase characters * and assign results to b1, b2 */ b1 = Character.isLowerCase(cp1); b2 = Character.isLowerCase(cp2); String str1 = "cp1 represents a lowercase character is " + b1; String str2 = "cp2 represents a lowercase character is " + b2; // print b1, b2 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
cp1 represents a lowercase character is true cp2 represents a lowercase character is false