国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 乳山市| 武夷山市| 西平县| 广南县| 临桂县| 当涂县| 布拖县| 昌图县| 鸡东县| 巴中市| 寿阳县| 德安县| 渝中区| 阿巴嘎旗| 安庆市| 南投县| 太保市| 延川县| 靖边县| 买车| 嘉黎县| 鲁山县| 固始县| 同心县| 固镇县| 磐石市| 苗栗市| 新干县| 淮安市| 泸州市| 禄丰县| 绍兴市| 积石山| 清水河县| 大埔区| 靖州| 秭归县| 皋兰县| 神池县| 泸定县| 昌宁县|