Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to perform an operation on two generics argument of the same type both extending Number.

Is it Possible? I always used to call methods on generic arguments, but seems there is some problem using operators (The operator + is undefined for the argument type(s) T, T).

public static <T extends Number> T sum(T a, T b){
    return a+ b;
}

What am I doing wrong?

EDIT: I try to improve a little bit my question. I understood that operators are not defined for type Number. It's a bit sad this thing because it would be nice to perform such an operation without introducing new interfaces like suggested by @Victor Sorokin.

But I still don't understand one thing: if operators are not implemented in the class Number, then at least in Double class should be implemented because I can use + operator with double. Neither these line of code will compile:

public static <T extends Double> T sum(T a, T b){

    T c = a +b;
}

why?

share|improve this question
Do you get an error when you try to do that? What does the error say? – MatrixFrog Jul 6 '11 at 18:14
2  
+ is not defined for Number! – Oli Charlesworth Jul 6 '11 at 18:15
it doesn't compile. Eclipse says: The operator + is undefined for the argument type(s) T, T – Heisenbug Jul 6 '11 at 18:15
@thomson_matt @Victor Sorokin @Oli Charlesworth thank you all for the help. I edited my question. – Heisenbug Jul 6 '11 at 18:29
Your new example doesn't compile for a different reason. At run-time, the JVM doesn't know what type of T it should construct, due to type erasure. – Oli Charlesworth Jul 6 '11 at 18:34
show 1 more comment

2 Answers

up vote 3 down vote accepted

It's not possible because Number doesn't have a + operator associated with it. In particular, you can't do this:

Number a = new Integer(1);
Number b = new Integer(2);
Number c = a + b;
share|improve this answer
btw, Number a = Integer(1); is not a valid Java code. – Victor Sorokin Jul 6 '11 at 18:30
Ugh, missing a cast. Thanks for pointing that out! – thomson_matt Jul 6 '11 at 18:35
Actually, not a cast, you missed new keyword ;) – Victor Sorokin Jul 6 '11 at 18:37
D'oh! It's been a long day... – thomson_matt Jul 6 '11 at 18:38

There is no + operator for classes in Java (except String and there's implicit conversion for other types via toString() when one of arguments is String). So, make you type implement some interface, say

interface Valuable {
    // use richest built-in numeric type
    double value();
    Valuable value(double v);
}

public static <T extends Valuable> T sum(T a, T b){
    return a.value(a.value() + b.value());
}

Ugly, isn't it? =D

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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