Search:

Type: Posts; User: copeg

Search: Search took 0.08 seconds.

  1. Replies
    5
    Views
    6,611

    Re: Implementing Multiple Interfaces with Generics

    Probably because Cloneable is en empty interface, so if you retrieve a Cloneable interface from something you can't call clone unless you are doing so on the object that implements a public form of...
  2. Replies
    5
    Views
    6,611

    Re: Implementing Multiple Interfaces with Generics

    Try


    public class Stuff <E extends Comparable, Comparable>
    {
    //...
    }
Results 1 to 2 of 2