BDubs
BDubs

Reputation: 53

Cannot convert from type T to type T?

A strange error here using static factory pattern. What am I missing? Here is the code:

class subclass<T> extends immutablestruct<T>{
private immutablestruct f;
private T x;

    //constructor
<T> subclass(T y, immutablestruct<T> f ){
    this.x = y;  //this is there the error is
    this.f = f;
}

Upvotes: 2

Views: 2441

Answers (1)

Nikita Rybak
Nikita Rybak

Reputation: 68006

Remove <T> from constructor declaration. Now you're declaring second generic parameter, while you can access old T value:

//constructor
subclass(T y, immutablestruct<T> f ){

Upvotes: 10

Related Questions