Client.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.section11;
- import java.lang.reflect.Method;
- import java.lang.reflect.Proxy;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- * 场景类
- */
- public class Client {
- public static void main(String[] args) throws Throwable {
- //定义一个痴迷的玩家
- IGamePlayer player = new GamePlayer("张三");
-
- //开始打游戏,记下时间戳
- System.out.println("开始时间是:2009-8-25 10:45");
-
- //获得类的class loader
- ClassLoader cl = player.getClass().getClassLoader();
-
-
- IGamePlayer proxy = DynamicProxy.newProxyInstance(cl,new Class[] {IGamePlayer.class}, new MyIvocationHandler(player));
-
- //登陆
- proxy.login("zhangSan", "password");
- //开始杀怪
- proxy.killBoss();
- //升级
- proxy.upgrade();
- //记录结束游戏时间
- System.out.println("结束时间是:2009-8-26 03:40");
-
- }
-
-
- }