笔记
文章平均质量分 54
Erato Rabbit
这个作者很懒,什么都没留下…
展开
-
git upstream 本地分支关联远程分支
在本地新建了branch hotfix后,push时报错 PS D:\TempCode\ford-wx-look> git push origin hotfix remote: 404 not found! fatal: repository 'https://gitee.com/enchantericl/demo-look.git/' not found PS D:\TempCode\ford-wx-look> git push https://gitee.com/enchantericl/原创 2022-01-24 11:40:17 · 408 阅读 · 0 评论 -
[练习题] 多态性 equals() 包装类
如何实现向下转型?需要注意什么问题?如何解决这些问题? 使用强转符 () Person p = new Man(); Man m1 = (Man)p; 但可能 ClassCastException 异常。 解决方法:在强转前用 instanceof 判断类型。 if(objName instanceof ClassType){ //... } if(p instanceof Man){ Man m = (Man)p; } == 和 equals() 有什么区别?原创 2022-01-22 18:20:49 · 169 阅读 · 0 评论