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

I have a class MySpecialClass <T extends Comparable<T>>

I am trying to to do the following:

toItemList() -> should take List<Dog> and convert it to List<T> so the MySpecialClass can operate on it.

fromItemList() -> should take in memory List<T> and convert it to List of objects. So if I have List it should convert it to List<Dog>, so I can get a back conversion after all operations are done.

How do I construct something like that in Java? My MySpecialClass works with List<T> which is why I need that.

public List<T> toItemList(List<dogs> list or List<cats> list){
// how to convert?      

    }



public List<dog> or List<cat>  fromItemList(){
      //local _inMemoryList (which is List<T>) convert to List<dog> or List<cat> depending on what MySpecialClass T is   
 // how to convert?     

        }

PS I am very new to java, always worked with .net so don't judge :)

share|improve this question
Could you please describe it more? Like what is the signature of these 2 methods: toItemList() and fromItemList() ? – anubhava Mar 22 '11 at 18:50
updated the post if that helps, thank you – dropsOfJupiter Mar 22 '11 at 18:56

2 Answers

I think you're mis-understanding what the <T> is doing in your example. T is a placeholder for any other class that implements Comparable.

Let's take a quick look at how this'll work, using your definition above of MySpecialClass.

public class Dog implements Comparable<Dog> {

}

public class Cat {

}
// This works because Dog implements Comparable
MySpecialClass<Dog> x = new MySpecialClass<Dog>();

// This will not because Cat does not implement Comparable
MySpecialClass<Cat> x = new MySpecialClass<Cat>();

There are many good tutorials for how to use generics in Java, probably starting with the Oracle tutorial.

share|improve this answer
I get an error when I do the following: MySpecialClass<Dog> x = new MySpecialClass<Dog>(); Bound mismatch: The type Dog is not a valid substitute for the bounded parameter <T extends Comparable<T>> of the type MySpecialClass<T> – dropsOfJupiter Mar 22 '11 at 20:47
also when I add Dog implements Comparable I get "Comparable is a raw type. References to generic type Comparable<T> should be parameterized" – dropsOfJupiter Mar 22 '11 at 20:49
I actually created all 3 classes in Eclipse - MySpecialClass, a Main, and Dog and edited my example appropriately. The only change was that in the Dog class I had to make sure that I said implements Comparable<Dog>. If that still doesn't fix it for you, I'll post my full code example. – Riggy Mar 23 '11 at 11:55

It seems that you didn't understand generics. In generic Class definition T stands the Type parameter so you can send cat, dog whatever you want as long as it extends Comparable in your class example. Here is an implementation of the fromItemList as I understand:

List<Object> fromItemList(List<T> list){

}

there is no need to have toItemList method as you have the Type

share|improve this answer
What does that actually accomplish? Doesn't every T have to extend Object? The method you suggest would simply return list immediately. – Riggy Mar 22 '11 at 20:13
That's what I do understand from his question – Feras Odeh Mar 22 '11 at 20:22
and that would be List<Dog> fromItemList(List<T> list){ [how to actually convert though?] } – dropsOfJupiter Mar 22 '11 at 20:50
List<Object> objList=new ArrayList<Object>(); objList.addAll(fromItemList); – Feras Odeh Mar 23 '11 at 13:23

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.