I am trying to use the char isLetter() method, which should return a boolean value corresponding to whether the character is a letter. But when I call the method, I get the message that "char cannot be dereferenced." I don't know what it means to cast a char or how to fix a bug. we are talking about the following:
if (ch.isLetter()) { .... .... }
Any help? What does it mean to play char and how can I avoid it?
user658168
source share