文章列表
package com.yusong.reflection;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class TestReflection
{
//能够打印传入的任何类的信息
public void printValue(Object obj) throws IllegalArgumentException, IllegalAccessException
{
Field [] field = ...