2015-11-15 15:51:35 -08:00

36 lines
725 B
Java

// staticchecking/petspeak/PetSpeak.java
// ©2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Speaking pets in Java
package staticchecking.petspeak;
interface Pet {
void speak();
}
class Cat implements Pet {
public void speak() {
System.out.println("meow!");
}
}
class Dog implements Pet {
public void speak() {
System.out.println("woof!");
}
}
public class PetSpeak {
static void command(Pet p) { p.speak(); }
public static void main(String[] args) {
Pet[] pets = { new Cat(), new Dog() };
for(Pet pet : pets)
command(pet);
}
}
/* Output:
meow!
woof!
*/