47 lines
1.1 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// polymorphism/music/Music2.java
2016-12-30 17:23:13 -08:00
// (c)2017 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-01-25 18:05:55 -08:00
// Overloading instead of upcasting
2016-07-28 12:48:23 -06:00
// {java polymorphism.music.Music2}
2015-06-15 17:47:35 -07:00
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
*/