• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

calling another method from another class, interface issue

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello.
i have an interface (Meth) that is implimented by a class (Rectangle).
there is a class named Point that the interface references to

Now, i want to pass Lengths of the sides of a rectangle , and get the 4 endpoints of that rectangle.
the Rectangle class is as follows :
[ fixed UBB tag syntax error and code formatting -ds ]
The body of the getEnds method, takes the LENGTHS of the lines of a rectangle and returns the endpoints. It is supposed to utilize the toString method from the Point class, but i cannot figure out how to access that toString from the getEnds method, nor can i figure out how to "convert" the endpoints from LENGTHS of the lines. Ex. new Rect(1.0,2.0) would result in the first point(0.0,0.0)Always starts at origin, the second being (1.0,0.0), third (1.0,2.0) and last (0.0,2.0). goes around the rectangle counter-clockwise.
any takers?
Thank you.
J
[ July 29, 2002: Message edited by: Dirk Schreckmann ]
 
Ranch Hand
Posts: 3244
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Jim
My first question is: is that really the way you want to do this? In the hierarchy you sdescribed you are basically saying that a Rect is a Meth or behaves like a Meth. Which is fine if there is some functionality you can factor out of a Rect into a Meth. If this is a school assignment and you have to do it this way then you're stuck but it doesn't look like good OO design from what you've said.
The problem you're having is that no-where in the code do you have any Point objects. You need a Point object(s) to call the Point methods on.
I normally think of an interface as abstrating behavior while you can use a Base class (abstract or concrete) to abstract structure. For example it makes more sense to me to have a Rect object made up of Point objects, or you could have Rect object that has one Point object as its origin and then to lengths to represent its height and width.
You can do what it is you're trying to do, but in the Rect class you are going to need at least one Point object. The Rect class is going to get he methods declared in the Meth interface, now you need something in the Rect class to call those methods on.
From what you've described the Rect always has one point at (0,0) so create a point object in the Rect class in the constructor set it to (0,0). Now you can use that Point object to call the methods in the Point class. So you can get the coordinates of that point and do what you need to do with them. IF you are beng forced to use the interface to work with the Points then in the interface you would put whatever methods you're going to need. You could have a getNextPoint method that works on a Point object and takes a length and a width as arguments and returns a Point object that has the coordinates you need.

Then with that Point you can move to the next one. In the method that calls getNextPoint you'll need to determine exactly what values to put in for the arguments - I'll leave that for you.
Keep in mind there are probably quite a few ways to solve this, others will surely post their sugestions too.
Hope that helps
 
jim gotti
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you Dave for taking the time to read over my post. Yes , unfortunately i am stuck using this code for an assignment. I originally just changed the instance vars in Point to public, but that was my way of "fenagling" the problem heh.
I just talked to a friend and he said that i have to use accessor methods, just like you posted. (i.e. using get to "lift" bypass the private constraint on the vars.
it didnt hit me until about an hour ago that the starting point is constant, which makes it so much simpler to work with. And the point objects are to be created with a main test method.
Again, i appreciate the insight, now back to getting this done the 'right' way, not my fenagled way =).
Jim
 
Be reasonable. You can't destroy everything. Where would you sit? How would you read a tiny ad?
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic