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

I am not very skilled in Java so I consider my question as basic. I am writing an interface for something like ArrayResult. There will be methods add and get.

Problem is that ArrayResult can obtain values of Integer or Double. So I need to define methods in interface more generally. I figured out that it is possible to have something like this for get method:

public <N extends Number> N get(Integer index);

Is that correct? I believe this means that get method can return anything what extends Number Object. What sytax to use for add method?

public void add(Number value);

This is not what I want since add(Integer value) doesnt override the interface method.

share|improve this question

3 Answers

up vote 2 down vote accepted

I guess what you want is

interface ArrayResult<N extends Number> {
    public N get(Integer index);

    public void add(N value);
}

Then you can write two separate specific implementers

class IntegerResult implements ArrayResult<Integer> {
    @Override
    public void add(Integer value) {
    }

    @Override
    public Integer get(Integer index) {
        return null;
    }
}

class DoubleResult implements ArrayResult<Double> {
    @Override
    public void add(Integer value) {
    }

    @Override
    public Double get(Double index) {
        return null;
    }
}

References:

share|improve this answer
Maybe. I tried what you suggested but when I override the add method with add(Integer). It doesnt work. It says that it needs to implement add(Number). – Macejkou Oct 28 '12 at 11:26
@Macejkou Check the update. – AmitD Oct 28 '12 at 11:29
you need to create an implementation class that you replace <N extends Number> with <Integer> in the class definition. – breezee Oct 28 '12 at 11:29
interface ArrayResult<N extends Number> {
    public N get(Integer index);

    public void add(N value);
}
share|improve this answer

Just return Number.

Number get(Integer index);

This will also allow you to return any Number descendants like Integer and Double. In Java parent type can hold any descendant type.

Also use integral type int in getter argument.

Number get(int index)

Also you can use predefined class like Vector<Number> with required functionality.

public Vector<Number> myfunction() {

     Vector<Number> ans = new Vector<Number>();
     ans.add(new Integer(1));
     ans.add(new Double(3.14));

     return ans;

}
share|improve this answer
Thank you. I know about collections. I have more complex problem and simplified my question. – Macejkou Oct 28 '12 at 11:41

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.