黑马程序员技术交流社区
标题:
关于反射的Method
[打印本页]
作者:
王宝龙
时间:
2012-10-12 19:30
标题:
关于反射的Method
本帖最后由 王宝龙 于 2012-10-15 14:06 编辑
首先定义了一个Point类,其中这个类中有一个私有的方法getY(),利用反射
getMethod(“getY”,null)并不能取得这个方法,那有没有类似于setAccessible(),这样的
“暴力反射”是针对方法的。
class Point
{
private int x ;
private int y ;
public Point(int x,int y)
{
this.x = x;
this.y = y;
}
public int getX()
{
return x;
}
private int getY()
{
return y;
}
}
public class Demo
{
public static void main(String [] args) throws Exception
{
Point rp = new Point(2,7);
Method method = rp.getClass().getMethod("getY",null);
System.out.println(method);
}
}
复制代码
作者:
杨志男
时间:
2012-10-12 21:04
import java.lang.reflect.Method;
class Point {
private int x;
private int y;
public Point(int i, int j) {
// TODO Auto-generated constructor stub
}
public void setX(int x) {
this.x = x;
}
//这里要单独set,如果两个变量放在一起set,那getY()方法不是没用了,那反射时会出现NoSuchMothedException
public void setY(int y) {
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
public class PDemo {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
Point rp = new Point(1, 2);
Method method = Point.class.getMethod("getY", null);
System.out.println(method.getName());
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2