方法 | 描述 |
---|---|
static boolean isDigit(char ch) | 判斷該字元是否為數字 |
舉例如下
class IsDigitDemo { public static void main(String[] args) { char c1 = '`'; char c2 = '3'; char c3 = ':'; char c4 = 'k'; char c5 = '+'; char c6 = ' '; System.out.println(Character.isDigit(c1)); System.out.println(Character.isDigit(c2)); System.out.println(Character.isDigit(c3)); System.out.println(Character.isDigit(c4)); System.out.println(Character.isDigit(c5)); System.out.println(Character.isDigit(c6)); } } /* 《程式語言教學誌》的範例程式 http://pydoing.blogspot.com/ 檔名:IsDigitDemo.java 功能:示範物件導向的基本觀念 作者:張凱慶 時間:西元 2010 年 10 月 */
編譯後執行,結果如下
中英文術語對照 | |
---|---|
方法 | method |
參數 | parameter |
沒有留言:
張貼留言