Possible Duplicate:
‘ \ ’-Invalid character constant?
In Java, I am trying to initialize a char variable like below, which it is not allowing.
char ch = '\';
Any reason behind this? It's giving a compilation error.
In Java, I am trying to initialize a char variable like below, which it is not allowing.
Any reason behind this? It's giving a compilation error. |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
you need to escape it:
The reason is, this
|
|||
|
|
|
Characters like Similarly, to include them in strings, you need to escape them. |
||||
|
|