- 1、本文档共27页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
“设计模式”学习报告;概要:;模式概论;什么是模式 ?; 因为每一个模式描述了一个在我们周围不断重复发生的问题,以及问题的解决方案的核心,它是一种指导,在一个良好的指导下,有助于你完成任务,有助于你作出一个优良的设计方案,达到事半功倍的效果。而且会得到解决问题的最佳办法。
; 设计模式的分类;简单工厂 (Simple Factory)模式;简单工厂模式的引论;
public class Apple implements Fruit
{ public void grow()
{ System.out.println(Apple is growing...);
}
public void harvest()
{ System.out.println(Apple has been harvested.);
}
public void plant()
{ System.out.println(Apple has been planted.);
}
};
public class Grape implements Fruit
{ public void grow()
{ System.out.println(“Grape is growing...);
}
public void harvest()
{ System.out.println(“Grape has been harvested.);
}
public void plant()
{ System.out.println(“Grape has been planted.);
}
};
public class Strawberry implements Fruit
{ public void grow()
{ System.out.println( Strawberry is growing...);
}
public void harvest()
{ System.out.println( Strawberry has been harvested.);
}
public void plant()
{ System.out.println( Strawberry has been planted.);
}
};public class FruitGardener
{ public static Fruit factory(String which) throws BadFruitException
{ if (which.equalsIgnoreCase(apple))
{ return new Apple();
}
else if (which.equalsIgnoreCase(strawberry))
{ return new Strawberry();
}
else if (which.equalsIgnoreCase(grape))
{ return new Grape();
}
else
{ throw new BadFruitException(Bad fruit request);
}
}
};简单工厂模式的结构;简单工厂模式的实现;简单工厂模式的优点和缺点;一个简单工厂模式的实例;工厂方法 (Factory Method)模式;工厂方法模式的引进;工厂方法模式的结构和角色;public interface Creator
{
public Product factory();
};活动序列图;简单工厂模式和工厂方法模式;设计模式的实际应用;FormatFactory(abstract);总结:;相关资源;Any Question?
您可能关注的文档
最近下载
- 餐饮经营数据分析.pptx VIP
- 宠物用品行业全渠道布局与渠道协同效应分析报告——2025年视角.docx
- 2022年南京邮电大学公共课《马克思主义基本原理概论》期末试卷A(有答案).docx VIP
- AGV调度系统解决策划方案.doc VIP
- 2023年南京邮电大学公共课《马克思主义基本原理概论》期末试卷A(有答案).docx VIP
- 2023年南京邮电大学公共课《马克思主义基本原理概论》期末试卷B(有答案).docx VIP
- MSDS_美孚宝力达EM润滑脂.pdf VIP
- 2024年7月1日实施新版医疗器械委托方企业与产品资质核准管理制度.docx
- 木结构房屋建筑鉴定报告格式文本.pdf VIP
- GB30871-2022《危险化学品企业特殊作业安全规范》应用问答.pdf VIP
文档评论(0)