43 lines
893 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// polymorphism/music/Music2.java
2015-06-15 17:47:35 -07:00
// Overloading instead of upcasting.
package polymorphism.music;
class Stringed extends Instrument {
@Override
public void play(Note n) {
2015-11-03 12:00:44 -08:00
System.out.println("Stringed.play() " + n);
2015-06-15 17:47:35 -07:00
}
}
class Brass extends Instrument {
@Override
public void play(Note n) {
2015-11-03 12:00:44 -08:00
System.out.println("Brass.play() " + n);
2015-06-15 17:47:35 -07:00
}
}
public class Music2 {
public static void tune(Wind i) {
i.play(Note.MIDDLE_C);
}
public static void tune(Stringed i) {
i.play(Note.MIDDLE_C);
}
public static void tune(Brass i) {
i.play(Note.MIDDLE_C);
}
public static void main(String[] args) {
Wind flute = new Wind();
Stringed violin = new Stringed();
Brass frenchHorn = new Brass();
tune(flute); // No upcasting
tune(violin);
tune(frenchHorn);
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Wind.play() MIDDLE_C
Stringed.play() MIDDLE_C
Brass.play() MIDDLE_C
2015-09-07 11:44:36 -06:00
*/