我有一个简单的问题。有没有办法(我想使用反射)来迭代一个类的所有静态值?
例如
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
谢谢。