| Author |
I want to know how to use methods furnished below in this program???
|
Aashiq Firnaz
Greenhorn
Joined: Dec 20, 2011
Posts: 3
|
|
|
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
Welcome to the Ranch
Your question is not clear. You can use the methods by calling them on an instance of your MapInterfaceExample class. But they do nothing useful.
Do you mean how would you implement them?
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
|
Be warned, your current implementation of put will lead to a StackOverflowError. When you call put, it calls put, which calls put, which calls put, etc.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Aashiq Firnaz
Greenhorn
Joined: Dec 20, 2011
Posts: 3
|
|
|
yes Mr Campbell i want to know how to implement them!!!
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 10043
|
|
personally, i would comment all of them out but one, and implement it first. implement it, test it, test it some more, then test it again. Note that when testing, you often have to write 'throw-away' code - code that is used ONLY for testing, but won't then be in your final program.
Which method you do first is sort of dependent on a few things. You can't really test your clear() method if there is nothing in the collection, so it doesn't make sense to implement it first...and Rob is right - your put() method has problems.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
 |
|
|
subject: I want to know how to use methods furnished below in this program???
|
|
|