- 博客(2)
- 收藏
- 关注
原创 Java子类创建对象时构造方法调用的分析
现在有两个类:Father(父类)和Child(子类),Child类继承了Father类。 代码如下: Father public class Father { int numFather = 10; public Father() { System.out.println("我是父类。"); } } Child public class Child extends Father{ int numChild = 20; public
2022-03-13 15:52:29 1423
原创 集合删除相同元素
实现思路:从索引0开始寻找和要删除字符串相同的元素,当两者内容不相同时再让 i 自增,注意不要让 i 越界,因为删除元素以后集合的size()会发生改变。 public static void main(String[] args) { ArrayList<String> strList = new ArrayList<>(); strList.add("刘备"); strList.add("刘备"); s.
2022-03-09 15:43:57 227 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人