This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Generic Types extending Abstract implementing Interface Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Generic Types extending Abstract implementing Interface" Watch "Generic Types extending Abstract implementing Interface" New topic
Author

Generic Types extending Abstract implementing Interface

Sandra Bachan
Ranch Hand

Joined: Feb 18, 2010
Posts: 434
Chapter 7, Sierra/Bates, Quiz Question # 6



Which of the following changes (taken separately) would allow this code to compile? (Choose all that apply.)

A. Change the Carnivore interface to



B. Change the Herbivore interface to



C. Change the Sheep class to



D. Change the Sheep class to



E. Change the Wolf class to



F. No changes are necessary




I can understand why B is the answer. However, I cannot understand the explanation for D

And D doesn’t work, because in D we made Sheep extend Plant, now the Wolf class breaks because its munch(Sheep) method no longer fulfills the contract of Carnivore.


How is Wolf class broken?

Marriage Made in Heaven
http://www.youtube.com/user/RohitWaliaWedsSonia
Sandra Bachan
Ranch Hand

Joined: Feb 18, 2010
Posts: 434
The following code, which incorporates D does not compile:



Compiler outputs:

Eat.java:11: type parameter Sheep is not within its bound
class Wolf extends Animal implements Carnivore<Sheep> {
^
1 error


Please give a hint, thanks!

Faisal A Khan
Greenhorn

Joined: Jul 02, 2010
Posts: 11
Hi Sandra,

By changing Sheep to extend Plant from Animal you have broken the interface contract of Carnivore when used in Wolf. How? By passing it a Sheep which doesn't extend an Animal anymore.

Please let me know if this helps.
Sandra Bachan
Ranch Hand

Joined: Feb 18, 2010
Posts: 434
@ Faisal: Now I get it. I changed Sheep to extend Animal and now it compiles.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Generic Types extending Abstract implementing Interface
 
Similar Threads
Diubt on Generics, Q.10 from K&b book
page# 616 question# 10
puzzled by this question
K&B -From genric & collections-Self Test
K&B collection and generic question