File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9595### 1.2.7 其他的一些小tips
9696
97971 . 尽量避免主观表述,少一点语义模糊的形容词,尽量要简洁明了,逻辑结构清晰。
98- 2 . 如果自己有博客或者个人技术栈点的话 ,写上去会为你加分很多。
98+ 2 . 如果自己有博客或者个人技术站点的话 ,写上去会为你加分很多。
99993 . 如果自己的Github比较活跃的话,写上去也会为你加分很多。
1001004 . 注意简历真实性,一定不要写自己不会的东西,或者带有欺骗性的内容
1011015 . 项目经历建议以时间倒序排序,另外项目经历不在于多,而在于有亮点。
107107- Markdown简历排版工具:https://resume.mdnice.com/
108108- 超级简历 : https://www.wondercv.com/
109109- best-resume-ever 基于Vue和LESS快速生成简历模板 : https://github.com/salomonelli/best-resume-ever
110- 4. 极简简历 : https://www.polebrief.com/index
110+ - 极简简历 : https://www.polebrief.com/index
111111- typora+markdown+css 自定义简历模板 :https://github.com/Snailclimb/typora-markdown-resume
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ public interface RandomAccess {
124124
125125### 2.2.7. HashSet如何检查重复
126126
127- 以下内容摘自我的 Java 启蒙书《Head fist java》第二版:
127+ 以下内容摘自我的 Java 启蒙书《Head first java》第二版:
128128
129129当你把对象加入` HashSet ` 时,` HashSet ` 会先计算对象的` hashcode ` 值来判断对象加入的位置,同时也会与其他加入的对象的 ` hashcode ` 值作比较,如果没有相符的 ` hashcode ` ,` HashSet ` 会假设对象没有重复出现。但是如果发现有相同 ` hashcode ` 值的对象,这时会调用` equals() ` 方法来检查 ` hashcode ` 相等的对象是否真的相同。如果两者相同,` HashSet ` 就不会让加入操作成功。
130130
You can’t perform that action at this time.
0 commit comments