mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-21 00:40:11 +08:00
19 lines
399 B
Plaintext
19 lines
399 B
Plaintext
|
foo {
|
||
|
bar => bar,
|
||
|
* => {}
|
||
|
}
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
"foo ", ["punctuation", "{"],
|
||
|
["attr-name", "bar"], ["operator", "=>"],
|
||
|
" bar", ["punctuation", ","],
|
||
|
["attr-name", "*"], ["operator", "=>"],
|
||
|
["punctuation", "{"], ["punctuation", "}"],
|
||
|
["punctuation", "}"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for attributes.
|