Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
you need to escape the backslash. '\\' – rahulroc Dec 28 '12 at 12:11

marked as duplicate by Don Roby, thkala, Daij-Djan, Linger, Dante is not a Geek Dec 28 '12 at 14:12

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.

2 Answers

up vote 4 down vote accepted

you need to escape it:

char backslash = '\\';
char quotation = '\'';

The reason is, this \' is a single quotation mark.

System.out.println(backslash); // prints \
System.out.println(quotation); // prints '
share|improve this answer

Characters like \, " and ' hold special meaning. Therefore to use them as character literals, you need to escape them. They need to be written as '\\', '\'' and '\"' respectively.
e.g. char c = '\\';

Similarly, to include them in strings, you need to escape them.
e.g. String path = "C:\\Program Files\\Java"

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.