Polimorfizm Java
package pl.am.object2.lesson42;
public class Test0 {
public static void main(String[] args) {
Zwierze[] zwierzeta = new Zwierze[4];
zwierzeta[0] = new Pies("łatek", 15);
zwierzeta[1] = new Kot("mruczek", 3);
zwierzeta[2] = new Kura(2);
zwierzeta[3] = new Krowa(200);
for (int i = 0; i<zwierzeta.length; i++) {
zwierzeta[i].dajGlos();
}
}
}