In my superclass, I have the following method:
public int getSpeed(String t)
{
return 0;
}
In my subclass I them overide the method with this:
public int getSpeed(String t)
{
return x;
}
I then have the following:
ArrayList<super> //contains only objects of the subclass
for (super s:collection)
{
s.getSpeed("");
}
And this always returns 0. How do I get it to return x?
EDIT: My code was written almost exactly as Bala R's solution shows, however I just did something stupid to my X that caused it to round to 0 every time. His solution therefore is correct.
getSpeed()take a String? – BlueRaja - Danny Pflughoeft May 5 '11 at 3:18