extends是子类继承父类的关键字,继承父类之后,可以使用父类的方法,也可以复写父类的方法。
implements是一个类实现一个或者多个接口。接口的方法一般是空的,如果implements一个接口就必须实现这个接口的所有方法。
例子如:- public interface UInterface {
- void onDeviceRun(int id);
- }
- interface PInterface extends UInterface {
- void onOtherRun();
- }
- class Example implements PInterface{
- void onDeviceRun(int id){
- System.out.println(id+" PInterface");
- }
- void onOtherRun(){
- System.out.println("onOtherRun");
- }
- }
复制代码 |