- package com.company.factory;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- */
- public class ChildSuperMan implements ISuperMan {
- //超能先生的三个孩子
- public void specialTalent() {
- System.out.println("小超人的能力是刀枪不入、快速运动");
- }
- }