黑马程序员技术交流社区
标题: 动态代理的实现 [打印本页]
作者: feitianmao627 时间: 2015-5-14 23:53
标题: 动态代理的实现
动态代理的实现:
步骤:1.所代理的类,一定要有一个"父接口";
2.自己定义一个类,实现InvocationHandler接口,并重写:invoke()方法;
在invoke()方法中,使用Java的反射机制,动态调用所需调用的方法,并增加新的内容;
3.当需要获取某个类的"代理对象"时:
调用:Proxy类中的一个静态方法:newProxyInstance()就能获取某个类的代理对象;
public interface IStudent {
public void coding();
}
public class Student implements IStudent {
@Override
public void coding() {
System.out.println("我写代码,我做项目......");
}
}
public class MyHandler implements InvocationHandler {
private Object target;
public MyHandler(Object t){
this.target = t;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
check();
//调用原用户想调用的方法
//使用反射,去调用
Object result = method.invoke(target, args);//当代理Student对象时,method就代表coding()方法
zj();
return result;
}
private void check(){
System.out.println("先期检查......");
}
private void zj(){
System.out.println("后期总结......");
}
}
public class Demo {
public static void main(String[] args) throws Exception {
// 不使用代理
/*
* IStudent stu = new Student(); stu.coding();
*/
// 使用代理
// 以下方法的调用,获取了一个Student类的代理对象;
IStudent stu = (IStudent) Proxy.newProxyInstance(
Student.class.getClassLoader(), Student.class.getInterfaces(),
new MyHandler(new Student()));
stu.coding();
// 为Teacher生成代理类
ITeacher tea = (ITeacher) Proxy.newProxyInstance(
Teacher.class.getClassLoader(), Teacher.class.getInterfaces(),
new MyHandler(new Teacher()));
tea.teach();
}
}
作者: richaled 时间: 2015-5-15 07:57
代理这部分的视频在哪,还要看吗
作者: 想要那片海 时间: 2015-5-15 08:17
为什么要使用动态代理呢?委托代理又是什么?
作者: feitianmao627 时间: 2015-5-15 11:03
代理还是很好用的可以看
作者: 陈明佳 时间: 2015-5-15 21:25
不懂。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |