mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-04 00:30:47 +08:00
25 lines
400 B
Plaintext
25 lines
400 B
Plaintext
""
|
|
"Fo\"obar"
|
|
'\''
|
|
'\123'
|
|
'\xf4'
|
|
`\``
|
|
`\123`
|
|
`\xf4`
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"Fo\\\"obar\""],
|
|
["string", "'\\''"],
|
|
["string", "'\\123'"],
|
|
["string", "'\\xf4'"],
|
|
["string", "`\\``"],
|
|
["string", "`\\123`"],
|
|
["string", "`\\xf4`"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings. |