I am stuck with the following problem with generics. i want a subclass BB to get a instance of a subclass of A, which is one of the fields of its super class B, through the method in the super class B. could someone please tell me the best way to handle this problem
please go through the code below (See the comment //Problem here), it is self explanatory and i don't know how to put it in words anyways.
public class A {
String name;
A(String name){
this.name = name;
}
}
public class AA extends A{
String itchy
AA(String name) {
super(name);
this.itchy = name+"_itchy";
}
}
public class B<T extends A> {
T field;
T getField(String name) throws InstantiationException, IllegalAccessException{
//Problem here
field = // instance of AA; how do i do this?
return field;
}
}
public class BB extends B<AA>{
public static void main(String[] args) throws InstantiationException, IllegalAccessException {
BB b = new BB();
System.out.println(b.getField("It works").name);
}
}