mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-13 21:10:19 +08:00
19 lines
303 B
Plaintext
19 lines
303 B
Plaintext
""
|
|
"Fo\"ob'ar"
|
|
''
|
|
'\'
|
|
'Foo''bar'
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"Fo\\\"ob'ar\""],
|
|
["string", "''"],
|
|
["string", "'\\'"],
|
|
["string", "'Foo''bar'"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings. |