字符char
所有数值操作符都可以用在char型操作数上。如果另一个操作数是一个数字或字符,char型操作数就自动转换成一个数字,如果是字符串,字符就与字符串相连。
int ch = 'a'+ 2; //ch = 99
char ch = 'a'+ 2; //ch = 'c'
java的character类中提供对字符进行检测: ( 语法:character.isDigit(ch) )
isDigit(ch) 字符为数字返回true
isLetter(ch) 字符为字母返回true
isLetterOrDigit(ch) 字符为字母或数字返回true
isLowerCase(ch) 字符为小写字母返回true
isUpperCase(ch) 字符为大写字母返回true
toLowerCase(ch) 返回指定字符小写形式
toUpperCase(ch) 返回指定字符大写形式