This week's giveaways are in the MongoDB and Jobs Discussion forums.
We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line!
See this thread and this one for details.
The moose likes Beginning Java and the fly likes abstract class...help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "abstract class...help " Watch "abstract class...help " New topic
Author

abstract class...help

Bradley Jordan
Ranch Hand

Joined: Feb 19, 2007
Posts: 42

that is my abstract code;
here is my subclass checking:

I am trying to complie that but getting this error:
accBalance has private access in Account
return ((accBalance - 700)* .02)* intrestPeriod; how do I get around this. I am only allowed to have the computeIntrest method take one integer arugment and return a double? I can add another variable to the method but that would violate the rule.
can anybody help with this?
Chandra Bhatt
Ranch Hand

Joined: Feb 28, 2007
Posts: 1707
Hi Jordon,



take accountbalance using the getter method. It is the proper
way, you can't access private variables of your parent class.


Regards,
cmbhatt


cmbhatt
Keith Lynn
Ranch Hand

Joined: Feb 07, 2005
Posts: 2341
I would make the variables in the superclass that need to be used in the subclass protected.
Bradley Jordan
Ranch Hand

Joined: Feb 19, 2007
Posts: 42
thanks that worked...
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: abstract class...help
 
Similar Threads
Stumped, need inspiration.
toString method in vector.
abstract class yet again into arrays..
Program like ATM where person enters amount in dollars and cents but program uses int for monies
Just Can't figure it out and it's due today