mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-04 00:30:47 +08:00
26 lines
391 B
Plaintext
26 lines
391 B
Plaintext
|
/**/
|
||
|
/* foo
|
||
|
bar */
|
||
|
--
|
||
|
-- foo
|
||
|
//
|
||
|
// foo
|
||
|
#
|
||
|
# foo
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["comment", "/**/"],
|
||
|
["comment", "/* foo\r\nbar */"],
|
||
|
["comment", "--"],
|
||
|
["comment", "-- foo"],
|
||
|
["comment", "//"],
|
||
|
["comment", "// foo"],
|
||
|
["comment", "#"],
|
||
|
["comment", "# foo"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for comments.
|