From 8891afa83448475ed0b60b21e8ffa14629607f09 Mon Sep 17 00:00:00 2001 From: CyC2018 <1029579233@qq.com> Date: Sat, 24 Mar 2018 11:17:48 +0800 Subject: [PATCH] auto commit --- notes/Java 容器.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notes/Java 容器.md b/notes/Java 容器.md index ed6da0e6..1ab7c4c8 100644 --- a/notes/Java 容器.md +++ b/notes/Java 容器.md @@ -121,7 +121,7 @@ x.equals(y) == y.equals(x) // true **3. 传递性** ```java -if x.equals(y) && y.equals(z) { +if(x.equals(y) && y.equals(z)) { x.equals(z); // true; } ``` @@ -496,3 +496,4 @@ private V putForNullKey(V value) { - [Java Collection Framework](https://www.w3resource.com/java-tutorial/java-collections.php) - [Iterator 模式](https://openhome.cc/Gossip/DesignPattern/IteratorPattern.htm) - [What is difference between HashMap and Hashtable in Java?](http://javarevisited.blogspot.hk/2010/10/difference-between-hashmap-and.html) +