Name the wrapper classes of char type and boolean type.
14 Likes
Wrapper class of char type is Character and boolean type is Boolean.
Answered By
6 Likes
What is the method to check whether a character is a letter or digit?
Differentiate between boxing and unboxing.
char ch = '9'; res= Character.isDigit(ch);