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

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

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

2019-11-10 23:23:36
字體:
供稿:網(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ā)表
主站蜘蛛池模板: 雅江县| 新郑市| 隆昌县| 开阳县| 梁河县| 湘乡市| 工布江达县| 满洲里市| 尤溪县| 睢宁县| 赤峰市| 昆山市| 读书| 兰溪市| 杭锦后旗| 常宁市| 顺昌县| 延寿县| 定襄县| 忻城县| 双峰县| 喀喇沁旗| 玉门市| 蕉岭县| 太仆寺旗| 沈丘县| 长泰县| 井研县| 轮台县| 岚皋县| 元谋县| 攀枝花市| 文昌市| 勃利县| 沅陵县| 内乡县| 罗平县| 徐水县| 永吉县| 嘉兴市| 宜春市|