Is it possible to make something like this? I know that implements cannot be in the <>, but I want to restrict the T to be Serializable somehow.
implements
public class Clazz<T implements Serializable> { ... }
extends
public class Clazz<T extends Serializable> { ... }
Just use extends instead of implements.
Yes, just use extends instead of implements.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
259 times
active
extendsprobably? – loki2302 Aug 16 '11 at 10:55extendsbut I had an error so I thought it was wrong. Then I found there was another issue andextendsreally works. – Tomas Aug 16 '11 at 11:56