The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
July 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Implement Talkative interface to Cat class

Posted by Kishori Sharan on July 27, 2001 at 4:00 PM

You need to implement Talkative interface to Cat class. Change your Cat class as follows and it will compile.

class Cat extends Animal implements Talkative {
public void talk(){
System.out.println("meow meow");
}
}

class Interrogator {
static void letsMakeItTalk(Talkative subject){
subject.talk();
}

public static void main(String[] args){
Cat c = new Cat();
Interrogator.letsMakeItTalk(c);
}
}




Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us