public class GenericsDemo {
public static void main (String args[]) {
A a = new A();
a.setX(40);
System.out.println(a.getX());
}
}
class A {
private int x;
public void setX() {
this.x=x;
}
public int getX() {
return x;
}
}
程序编译出错
类A变量用了泛型之后其成员变量就必须是用泛型类型声明吗?
最好顺便解释一下泛型用于类后的变化……