Commit 85ae3934 authored by charlotte.kerr's avatar charlotte.kerr

Upload New File

parent 7b920bff
public class Owl extends Bird {
public void hoot() {
System.out.println("The owl hoots.");
}
public Owl(String name) {
this.name = name;
this.diet = "insects, reptiles, small mammals and rodents";
this.habitat = "forest";
this.description = "This animal is an owl; a nocturnal raptor";
this.classification = "Bird";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment