java中接口实现多态举例


public class Test4 {

     public static void main(String[] args){
Instrument ss[]={new Wind(),new Piano()};
for(Instrument i:ss){
tun(i);
}
}
public static void tun(Instrument i){
i.play();
}
} interface Instrument{
void play();
}
class Wind implements Instrument{
public void play(){
System.out.println("wind can play");
}
}
class Piano implements Instrument{
public void play(){
System.out.println("Piano can play");
}
}
上一篇:poj2492 A Bug's Life【基础种类并查集】


下一篇:可能是目前效果最好的生成式聊天机器人模型-----深入理解“用于中文闲聊的GPT2模型”项目