JAVA中implements的用法

implements使用

interface Sport {

void run();

void jump();

}

class Athlete implements Sport {

public void run() {

System.out.println("短跑");

}

public void jump() {

System.out.println("跳高");

}

public static void main(String[] args) {

Ahtlete al=new Ahtlete();

al.run();

al.jump();

}

}

上一篇:webpack4 系列教程(二): 编译 ES6


下一篇:ASCII,Unicode,UTF-8,GBK 区别