Is there a difference between single and double quotes in Java?
|
|
Use single quotes for chars, double quotes for
They cannot be used any other way around (like in Python, for example). |
|||
|
|
|
A char is a single UTF-16 character, that is a letter, a digit, a punctuation mark, a tab, a space or something similar. A char literal is either a single one character enclosed in single quote marks like this
or an escape sequence, or even a unicode escape sequence:
It is worth noting that Unicode escape sequences are processed very early during compilation and hence using '\u00A' will lead to a compiler error. For special symbols it is better to use escape sequences instead, i.e. '\n' instead of '\u00A' . Double quotes being for
It isn't necessary to escape the double quote inside single quotes.
|
|||
|
|
