- package com.company.adapter;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- */
- public class UnknownActor implements IActor {
- //无名演员演戏
- public void playact(String context) {
- System.out.println("无名演员:"+context);
- }
- }