Java中是否有一种方法可以使用所述成员的名称来获取类的成员。
说我们有一个这样的类:
public class intClass {
public int x;
public intClass(x) {
this.x = x;
}
}
反正有做类似的事情吗?
intClass newIntClass = new intClass(4);
String memberName = "x";
int y = newIntClass.[memberName];