class Bird {
method fly(){ ... }
}
class Plane {
method fly() { ... }
}
class Angel {
method fly(){ ... }
}
class Leaf {
method fly(){ ... }
}
(b)
flyer = new Bird() flyer.fly() flyer = new Plane() flyer.fly() flyer = new Angel() flyer.fly() flyer = new Leaf() flyer.fly()