JavaRanch » Java Forums »
Java »
Java in General
| Author |
constructor
|
mike hew
Greenhorn
Joined: Oct 26, 2006
Posts: 27
|
|
I found I think my problem but not sure how to fix it, I was naming as shapes and not what was asked in the bold, could someone give me an example or where to go and look, the book I have is not a good teacher, Thank you in advance.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
Mike -- PLEASE stop starting new threads for this same exercise! Except for people that have talked to you already, nobody understands where you're coming from. If you left this all in one thread, then people would be able to see the context. Now, anyway: the problem as I understood it was that Circle, Sphere, etc, need to extend Shape (if Shape is a class) or implement Shape (if Shape is an interface.) In other words: public class Circle extends Shape { ...
|
[Jess in Action][AskingGoodQuestions]
|
 |
mike hew
Greenhorn
Joined: Oct 26, 2006
Posts: 27
|
|
|
no, circle extends twodimensionshape, which extends to shape under the program
|
 |
mike hew
Greenhorn
Joined: Oct 26, 2006
Posts: 27
|
|
As you can see, Circle DOESNOT extend to shape, and isnot suppose too!
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
If Circle extends TwoDimensionalShape and TwoDimensionalShape extends Shape, then Circle also extends Shape i.e. is perfectly legal. Without digging out your original post, I'm not sure if that is what your problem is, but maybe it will help.
|
Joanne
|
 |
 |
|
|
subject: constructor
|
|
|
|