Javaクラスのメソッド内で宣言された変数名を取得するにはどうすればよいですか?
例:
public class A {
String x;
public void xyz(){
int i;
String z = null;
//some code here
}
Method[] methods = A.class.getDeclaredMethods();
for (Method q = methods){
//some code here to get the variables declared inside method (i.e q)
}
}
どうやってやるの?
前もって感謝します..