Java 中extends与implements使用方法
extends与implements的区别:
extends 是继承父类,只要那个类不是声明为final或者那个类定义为abstract的就能继承,JAVA中不支持多重继承,但是可以用接口来实现,这样就用到了implements,继承只能继承一个类,但implements可以实现多个接口,用逗号分开就行了。
比如:
class A extends B implements C,D,E {} (class 子类名 extends 父类名 implenments 接口名)
- //定义一个Runner接口
- public inerface Runner
- {
- int ID = 1;
- void run ();
- }
- //定义一个interface Animal,它继承于父类Runner
- interface Animal extends Runner
- {
- void breathe ();
- }
- //定义Fish类,它实现了Animal接口的方法run()和breather()
- class Fish implements Animal
- {
- public void run () //实现了Animal方法run()
- {
- System.out.println("fish is swimming");
- }
- public void breather()
- {
- System.out.println("fish is bubbing");
- }
- }
- //定义了一个抽象类LandAnimal,它实现了接口Animal的方法。
- abstract LandAnimal implements Animal
- {
- public void breather ()
- {
- System.out.println("LandAnimal is breathing");
- }
- }
- //定义了一个类Student,它继承了类Person,并实现了Runner接口的方法run()。
- class Student extends Person implements Runner
- {
- ......
- public void run ()
- {
- System.out.println("the student is running");
- }
- ......
- }
- //定义了一个接口Flyer
- interface Flyer
- {
- void fly ();
- }
- //定义了一个类Bird,它实现了Runner和Flyer这两个接口定义的方法。
- class Bird implements Runner , Flyer
- {
- public void run () //Runner接口定义的方法。
- {
- System.out.println("the bird is running");
- }
- public void fly () //Flyer接口定义的方法。
- {
- System.out.println("the bird is flying");
- }
- }
- //TestFish类
- class TestFish
- {
- public static void main (String args[])
- {
- Fish f = new Fish();
- int j = 0;
- j = Runner.ID;
- j = f.ID;
- }
- }