vote up 0 vote down star

Hey

Im trying to use generic types for the first time in Java , as I only want my constructor to accept classes that implement the "Anealable" interface. theres a problem with my code by the only error I get is "Illegal start of Type" which is not getting very far with trying to make it work

here is the code for my class

package simulated_anealing;

public class Crystal extends Thread {

    Object a;

    public  Crystal(<? implements Anealable> a)
    {
        this.a = a;
    }

}
flag

1  
@Gwilym - this comment is off-topic, but it is generally a bad idea to extend Thread. It would probably be better to declare Crystal as implementing Runnable, and then run it using a separate Thread object. That way you have the option of doing thread pooling, for example. – Stephen C Oct 31 at 23:58

2 Answers

vote up 6 vote down check

Why don't you just pass into the constructor the Anealable type like this :

package simulated_anealing;

public class Crystal extends Thread {

    Object a;

    public  Crystal(Anealable a)
    {
        this.a = a;
    }

}
link|flag
Will this mean that construtor will now accept only Classes that implement the Anealable interface? – Gwilym Oct 31 at 21:12
ok just had a play with my code and this seems to work out. thanks – Gwilym Oct 31 at 21:16
vote up 3 vote down

I assume you want to parameterize the class. If so then:

public class Crystal<T extends Anealable> extends Thread {
  Object a;

  public  Crystal(T a) {
    this.a = a;
  }
}

Alternatively, can parameterize methods (including constructors) like so:

public class Crystal extends Thread {
  public <T extends Anealable> Crystal(T t) {
    // do stuff with T
  }
}

It's hard to determine what your intent is so I can't really comment on which would suit your needs.

link|flag
You can parameterize constructors too. – sylvarking Oct 31 at 21:08
@erickson: quite right, cheers, fixed. – cletus Oct 31 at 21:13

Your Answer

Get an OpenID
or

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