Client.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section11;
  2. import java.lang.reflect.Method;
  3. import java.lang.reflect.Proxy;
  4. /**
  5.  * @author cbf4Life cbf4life@126.com
  6.  * I'm glad to share my knowledge with you all.
  7.  * 场景类
  8.  */
  9. public class Client {
  10. public static void main(String[] args) throws Throwable  {
  11. //定义一个痴迷的玩家
  12. IGamePlayer player = new GamePlayer("张三");
  13. //开始打游戏,记下时间戳
  14. System.out.println("开始时间是:2009-8-25 10:45");
  15. //获得类的class loader
  16. ClassLoader cl = player.getClass().getClassLoader();
  17. IGamePlayer proxy = DynamicProxy.newProxyInstance(cl,new Class[] {IGamePlayer.class}, new MyIvocationHandler(player));
  18. //登陆
  19. proxy.login("zhangSan", "password");
  20. //开始杀怪
  21. proxy.killBoss();
  22. //升级
  23. proxy.upgrade();
  24. //记录结束游戏时间
  25. System.out.println("结束时间是:2009-8-26 03:40");
  26. }
  27. }