GamePlayerProxy.java 389 B

12345678910111213141516171819
  1. package com.sf.aop.proxy;
  2. /**
  3. * 接受代理需求的店铺
  4. */
  5. public class GamePlayerProxy implements IGamePlayer{
  6. // 店铺合作的小代
  7. private IGamePlayer player;
  8. public GamePlayerProxy(IGamePlayer player) {
  9. this.player = player;
  10. }
  11. @Override
  12. public void playGame() {
  13. // 指派小代去玩儿游戏
  14. this.player.playGame();
  15. }
  16. }