国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

靜態代理動態代理以及aop

2019-11-10 22:05:52
字體:
來源:轉載
供稿:網友

靜態代理和動態代理

//靜態代理interface SubClass{	void action();}class SubClasss implements SubClass{	public void action(){		System.out.PRintln("執行action");	}}class Proxy1 implements SubClass{	SubClasss s;	public Proxy1(SubClasss s){		this.s=s;	}	@Override	public void action() {		System.out.println("代理類執行");		s.action();	}	}public class ProxyTest {	public static void main(String[] args) {		SubClass s = new Proxy1(new SubClasss());		s.action();		//動態代理		Protest p = new Protest();		Object o =p.blind(s);		SubClass ss = (SubClass) o;		ss.action();		Childclass c = new Childclass();		ParentClass pa =(ParentClass) p.blind(c);		pa.action();	}}//動態代理interface ParentClass{	void action();}class Childclass implements ParentClass{	@Override	public void action() {		System.out.println("執行childclass的action方法");	}}class Protest implements InvocationHandler{	Object obj;	public Object blind(Object obj){		this.obj=obj;		return Proxy.newProxyInstance(obj.getClass().getClassLoader(), 				obj.getClass().getInterfaces(), this);	}	@Override	public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {		System.out.println("invoke方法");		Object returnVal = method.invoke(obj, args);		return returnVal;	}	}aop

interface Parent{	void fly();	void action();}class Child implements Parent{	@Override	public void fly() {		System.out.println("i believe i can fly");	}	@Override	public void action() {		System.out.println("執行action");	}	}class ChildUtil{	void method1(){		System.out.println("=======方法一=======");	}	void method2(){		System.out.println("=======方法二=======");	}}class MyInvocation implements InvocationHandler{	Object obj;	void setObj(Object obj){		this.obj=obj;	}	@Override	public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {		ChildUtil child = new ChildUtil();		child.method1();		Object o = method.invoke(obj, args);		child.method2();		return o;	}	}class Protest2{	public static Object getProxyInstance(Object obj){		MyInvocation m = new MyInvocation();		m.setObj(obj);		return Proxy.newProxyInstance(obj.getClass().getClassLoader(), 				obj.getClass().getInterfaces(), m);					}}public class AopTest {	public static void main(String[] args) {		Child c = new Child();		Object obj = Protest2.getProxyInstance(c);		Parent p = (Parent) obj;		p.fly();		p.action();	}}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 遂昌县| 甘南县| 岗巴县| 准格尔旗| 东乌珠穆沁旗| 洛南县| 图木舒克市| 封开县| 育儿| 合阳县| 康保县| 惠来县| 海宁市| 东乡县| 汶川县| 西林县| 响水县| 石景山区| 清远市| 友谊县| 体育| 新安县| 桓仁| 吉安市| 房产| 娱乐| 吉林市| 五家渠市| 漳州市| 秦安县| 洮南市| 达拉特旗| 吉首市| 尤溪县| 河曲县| 伊宁市| 东宁县| 荆门市| 色达县| 白朗县| 永平县|