- 博客(3)
- 收藏
- 关注
原创 java多态demo
controller @RequestMapping(value = "/A", method = RequestMethod.GET) public String testA() { a.execute(1); return "helloA"; } @RequestMapping(value = "/B", method = RequestMethod.GET) public String testB() { b.execu
2021-01-08 16:25:06 144
原创 抽象类实现接口,子类继承抽象类,这三个之间的关系?
①一个类实现一个接口,则该类必须实现该接口中的所有方法,因为默认情况下该接口中的方法是公共的和抽象的,因此实现该接口的类必须重写所有接口的Method,例如: interface A { boolean add(); boolean offer1(); boolean offer2(); } public class Test01 implements A{//必须实现A接口中的所有方法 @Override public boolea
2020-12-30 14:31:09 1987 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人