package cn.com.deviseModal;
public class NvWa {
public static void main(String args[]){
FemaleHumanFactory fhf=new FemaleHumanFactory();
MaleHumanFactory mhf=new MaleHumanFactory();
Human maleYellowHuman=mhf.createYellowHuman();
Human femaleYellowHuman=fhf.createYellowHuman();
System.out.println("------黄种男性-------");
maleYellowHuman.cry();
maleYellowHuman.laugh();
maleYellowHuman.talk();
maleYellowHuman.sex();
System.out.println("------黄种女性-------");
femaleYellowHuman.cry();
femaleYellowHuman.laugh();
femaleYellowHuman.talk();
femaleYellowHuman.sex();
}
}