X Tutup
Skip to content

Commit f670267

Browse files
committed
集合框架 新增Hashmap
1 parent 02db053 commit f670267

24 files changed

+524
-288
lines changed

history/pics_tag.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717

1818
<div align="center"> <img src="../pics/beanfactory.jpg" width=""/></div><br/>
1919

20-
<div align="center"> <img src="../pics/bean-init.png.png" width=""/></div><br/>
20+
<div align="center"> <img src="../pics/jdk1.7-drop-dead-1.png" width=""/></div><br/>
21+
<div align="center"> <img src="../pics/hashmap-compare1" width=""/></div><br/>
22+
<div align="center"> <img src="../pics/hashmap-compare2" width=""/></div><br/>
2123

2224

2325

notes/JavaArchitecture/01 Java 基础.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,20 @@ strictfp 关键字可应用于类、接口或方法。使用 strictfp 关键字
12921292

12931293

12941294

1295+
## 9. native
1296+
1297+
native 即 JNI,Java Native Interface,凡是一种语言,都希望是纯。比如解决某一个方案都喜欢就单单这个语言来写即可。Java平台有个用户和本地C代码进行互操作的API,称为Java Native Interface (Java本地接口)。
1298+
1299+
<div align="center"> <img src="../pics/java-native-interface.png" width="500"/></div><br/>
1300+
1301+
1302+
1303+
参考资料:
1304+
1305+
- [java中native的用法 - 不止吧 - 博客园](https://www.cnblogs.com/b3051/p/7484501.html)
1306+
1307+
1308+
12951309

12961310

12971311
# 四、基本数据类型与运算
@@ -1959,4 +1973,9 @@ public class CloneExample implements Cloneable {
19591973

19601974

19611975

1976+
参考资料:
1977+
1978+
- [【必读】搞懂 Java equals 和 hashCode 方法 - 掘金](https://juejin.im/post/5ac4d8abf265da23a4050ae3)
1979+
1980+
19621981

notes/JavaArchitecture/02 Java 集合框架.md

Lines changed: 502 additions & 287 deletions
Large diffs are not rendered by default.

notes/pics/LinkedList_add.png

32.5 KB
Loading

notes/pics/LinkedList_base.png

0 Bytes
Loading

notes/pics/LinkedList_remove.png

41.6 KB
Loading

notes/pics/hashMap-1.8-hash1.png

73.2 KB
Loading

notes/pics/hashMap-1.8-hash2.png

47.5 KB
Loading

notes/pics/hashMap-datastruct.png

72.4 KB
Loading

notes/pics/hashmap-compare1.png

49.5 KB
Loading

0 commit comments

Comments
 (0)
X Tutup