摘要: class Parent { public Parent() { System.out.println("调用父类构造方法"); }}class Child extends Parent { public Child() { System.out.println("调用子类构造方法"); }}pub 阅读全文
posted @ 2021-10-05 22:17 年年ℓ 阅读(18) 评论(0) 推荐(0)