首页 > 代码库 > 代理设计模式
代理设计模式
1 interface A 2 {public void get(); 3 } 4 class B implements A 5 {public void get(){ 6 System.out.println("出席活动"); 7 } 8 } 9 class C implements A10 {private A a;11 public C(A a){12 this.a=a;13 }14 public void print (){15 System.out.println("接到媒体通知");16 }17 public void get(){18 this.print();19 this.a.get();20 this.stop();21 }22 public void stop(){23 System.out.println("结束");24 }25 }26 public class vvv27 {public static void main(String args[]){28 A a=new C(new B());29 a.get();30 }31 }
代理设计模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。