|
|
|
|
|
by skitter
590 days ago
|
|
Another syntax oddity (not mentioned here) that breaks most highlighters: In Java, unicode escapes can be anywhere, not just in strings. For example, the following is a valid class: class Foo\u007b}
and this assert will not trigger: assert
// String literals can have unicode escapes like \u000A!
"Hello World".equals("\u00E4");
|
|