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

首頁 > 學院 > 開發(fā)設(shè)計 > 正文

靜態(tài)代理動態(tài)代理以及aop

2019-11-10 23:14:42
字體:
供稿:網(wǎng)友

靜態(tài)代理和動態(tài)代理

//靜態(tài)代理interface SubClass{	void action();}class SubClasss implements SubClass{	public void action(){		System.out.PRintln("執(zhí)行action");	}}class Proxy1 implements SubClass{	SubClasss s;	public Proxy1(SubClasss s){		this.s=s;	}	@Override	public void action() {		System.out.println("代理類執(zhí)行");		s.action();	}	}public class ProxyTest {	public static void main(String[] args) {		SubClass s = new Proxy1(new SubClasss());		s.action();		//動態(tài)代理		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();	}}//動態(tài)代理interface ParentClass{	void action();}class Childclass implements ParentClass{	@Override	public void action() {		System.out.println("執(zhí)行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("執(zhí)行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();	}}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁蒗| 桐柏县| 惠东县| 大埔县| 邵阳县| 渭源县| 茂名市| 义马市| 海晏县| 永定县| 泸西县| 文化| 安图县| 灌阳县| 潜江市| 昌都县| 乐昌市| 正宁县| 宁远县| 玉林市| 罗田县| 三门县| 东宁县| 宝鸡市| 玉环县| 罗甸县| 江油市| 永济市| 府谷县| 清水河县| 台北市| 沙河市| 额济纳旗| 娄底市| 余江县| 梁河县| 板桥市| 武川县| 景德镇市| 尉氏县| 资兴市|