Canfly_canfly 环球观速讯

时间 : 2023-06-02 18:02:16 来源 : 青年汽车云小站


(相关资料图)

1、interface CanFly { void fly(); } class Plane implements CanFly { @Override public void fly() { System.out.println("飞机起飞了!"); } } class Bird implements CanFly { @Override public void fly() { System.out.println("鸟飞了!"); } } public class CanFlyTest { public static void makeFly(CanFly canFly) { canFly.fly(); } public static void main(String[] args) { CanFly plane = new Plane(); CanFly bird = new Bird(); makeFly(plane); makeFly(bird); } }。

本文到此分享完毕,希望对大家有所帮助。


标签:

相关阅读

X 关闭

X 关闭

热门文章