当前位置:   article > 正文

GOF设计模式--代理模式和装饰模式_代理和装饰模式

代理和装饰模式

一、装饰模式

1、示例代码

  1. // common interface
  2. public interface IRunner {
  3. public void run();
  4. }
  5. //target class
  6. public class Runner implements IRunner {
  7. @Override
  8. public void run() {
  9. System.out.println("运动员在跑步...");
  10. }
  11. }
  12. //decoration class
  13. public class RunnerWithJet implements IRunner {
  14. private IRunner runner;
  15. public RunnerWithJet(IRunner runner) {
  16. this.runner = runner;
  17. }
  18. @Override
  19. public void run() {
  20. System.out.println("给运动员屁股后加一个推进装置...");
  21. runner.run();
  22. }
  23. }

2、概念

  • 装饰模式指的是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能。它是通过创建一个包装对象,也就是装饰来包裹真实的对象 ;

 

二、代理模式

1、示例代码

  1. public interface Person {
  2. void work();
  3. }
  4. public class Student implements Person {
  5. @Override
  6. public void work() {
  7. System.out.println("sudent is studying");
  8. }
  9. }
  10. public class ProxyStudent {
  11. private Student tar;
  12. public ProxyStudent(Student tar) {
  13. this.tar = tar;
  14. }
  15. public Object getProxyInstance(){
  16. return Proxy.newProxyInstance(tar.getClass().getClassLoader(), tar.getClass().getInterfaces(),
  17. new InvocationHandler() {
  18. @Override
  19. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  20. if ("work".equals(method.getName())){
  21. System.out.println("student is studying hard");
  22. return null;
  23. }else{
  24. return method.invoke(tar,args);
  25. }
  26. }
  27. });
  28. }
  29. }
  30. public class TestDemo {
  31. @Test
  32. public void test01(){
  33. Student stu = new Student();
  34. stu.work();
  35. Person proxyStu = (Person) new ProxyStudent(stu).getProxyInstance();
  36. proxyStu.work();
  37. }
  38. }

2、概念

  • 用来修改已经具有的对象的方法,控制方法是否执行,或在方法执行之前和执行之后做一些额外的操作;

 

三、对比总结

1、代理模式和装饰模式作用都是对特定类的功能进行增强;

2、装饰模式:目标对象和装饰对象要实现相同的接口;如果接口中的方法较多,代码会比较冗余;

3、动态代理:不用和目标对象实现相同的接口,而且能够控制方法是否执行,或在方法执行前后做一些额外的操作;目标对象至少 要实现一个接口,否则无法使用动态代理;

4、实例:spring 中的aop 本质就是使用的代理技术;而java.io包中的包装流就是用的装饰模式;

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/562284
推荐阅读
相关标签
  

闽ICP备14008679号