mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-09 19:10:21 +08:00
19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
$@
|
|
$$<
|
|
$(@D)
|
|
$(foobar)
|
|
$(2)
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["variable", "$@"],
|
|
["variable", "$$<"],
|
|
["variable", "$(@D)"],
|
|
["variable", "$"], ["punctuation", "("], "foobar", ["punctuation", ")"],
|
|
["variable", "$"], ["punctuation", "("], "2", ["punctuation", ")"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for variables. |