mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-13 21:10:19 +08:00
16 lines
309 B
Plaintext
16 lines
309 B
Plaintext
/**/
|
|
/* foo */
|
|
/* foo
|
|
bar */
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["comment", "/**/"],
|
|
["comment", "/* foo */"],
|
|
["comment", "/* foo\r\nbar */"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for empty comment, single-line comment and multi-line comment. |