宽字符

致虚极,守静笃。

No.1 使用 Map.Entry
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.HashMap;
import java.util.Map;

public class TestMap01 {
public static void main(String[] args) {

Map<String, Object> map = new HashMap<String, Object>();
map.put("zhangsan", 20);
map.put("lisi", 50);

for (Map.Entry<String, Object> entry : map.entrySet()) {
System.out.println(entry.getKey() + "\t" + entry.getKey());
}

}
}
阅读全文 »

settings.xml
1
2
3
4
5
6
<mirror>
<id>aliyunmaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/public/</url>
</mirror>
阅读全文 »

十轮霜影转庭梧,此夕羁人独向隅。

未必素娥无怅恨,玉蟾清冷桂花孤。

宋·晏殊·中秋月


0%