本帖最后由 yin1031468524 于 2013-6-5 00:13 编辑
- package com.itheima;
- import java.lang.reflect.Field;
- public class ReflectDemo
- {
- /**
- * @param args
- */
- public static void main(String[] args)
- {
- ReflectPoint pt1 = new ReflectPoint(3, 5);
- try
- {
- Field fieldY = pt1.getClass().getField("y");
- System.out.println(fieldY.get(pt1)); //此处有异常需要try-catch或者在main方法throws
- } catch (Exception e)
- {
- e.printStackTrace();
- }
- }
- }
复制代码 见注释部分、、
|