我有一個簡單的問題。有沒有一種方法(使用反射我想)迭代一個類的所有靜態值?在java中迭代靜態int值
例如
class Any {
static int one = 1;
static int two = 2;
static int three = 3;
public static void main(String [] args) {
for(int i : magicMethod(Any.class)){
System.out.println(i);
}
}
}
輸出
1
2
3
感謝。
太多問題看像作業... – 2008-11-07 07:03:27