vote up 2 vote down star

Hi, I have the following class :

public abstract class Step {
    public abstract <S,T> S makeAStep(S currentResult, T element);
}

and I'm trying to Implement it so it will take two int's and return the sum of them , something like this :

public class sumOfInts extends Step {
    public <Integer,Integer> Integer makeAStep(Integer currentResult, Integer element){
        return currentResult + element;
    }
}

but I get the following error :

The type sumOfInts must implement the inherited abstract method Step.makeAStep(S, T)

please help me (I need it for my programming languages course homework)

I asking very kindly to write me a code that does what I want to accomplish which wont have any errors or warnings thanks in front

flag
Because it's working now, I suggest you accept the answer that was most useful to you, possibly giving up votes to answers that were useful at all. – KLE Nov 7 at 11:19

2 Answers

vote up 5 vote down
public abstract class Step<S,T> {
    public abstract S makeAStep(S currentResult, T element);
} 

public class SumOfInts extends Step<Integer,Integer> {
    // etc.
link|flag
+1 - Yup, exactly right. – Topher Fangio Nov 6 at 21:29
2  
So THAT's how you do that! I'm pretty good with Java but never learned that aspect of generics. Good job. – Carl Smotricz Nov 6 at 21:30
1  
Also, the Step class itself would have to have the generics registered at the class level for this suggestion to work, not at the method level – Jason Nov 6 at 21:31
@Jason +1 I agree! I think your comment corresponds to the answer I just wrote. – KLE Nov 6 at 21:47
vote up 0 vote down

I agree with Jonathan's answer.


There is also another possibility, given below, that keeps the type parameters on the method itself.

It's only theory in this case, because the class and method names suggest that this has no meaning for this example.
So I change the names for my example:

    public abstract class Step {
      public abstract <S,T> String makeAStep(S first, T second);
    }

    public class ConcatTwo extends Step {
      public <S, T> String makeAStep(S first, T second){
        return String.valueOf(first) + String.valueOf(second);
      }
    }

Note : This works because the operation uses String.valueOf(Object), that works for any type (all subclass Object). For another operation, we would have to restrict S and T, using something like
S extend Integer for example.

link|flag
thanks to you all , it's working (after a long long time of me trying to make it work (did I say long time ? I meant long long long ... time) :-) take care. – ronen Nov 6 at 22:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.