- 1、本文档共18页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
《设计模式6大原则
单一职责原则(Single?Responsibility?Principle)class Animal{
public void breathe(String animal){
System.out.println(animal+呼吸空气);
}
}
public class Client{
public static void main(String[] args){
Animal animal = new Animal();
animal.breathe(牛);
animal.breathe(羊);
animal.breathe(猪);
}
}
运行结果:
牛呼吸空气
羊呼吸空气
猪呼吸空气Terrestrial,水生动物Aquatic,代码如下:
class Terrestrial{
public void breathe(String animal){
System.out.println(animal+呼吸空气);
}
}
class Aquatic{
public void breathe(String animal){
System.out.println(animal+呼吸水);
}
}
public class Client{
public static void main(String[] args){
Terrestrial terrestrial = new Terrestrial();
terrestrial.breathe(牛);
terrestrial.breathe(羊);
terrestrial.breathe(猪);
Aquatic aquatic = new Aquatic();
aquatic.breathe(鱼);
}
}牛呼吸空气
羊呼吸空气
猪呼吸空气
鱼呼吸水class Animal{
public void breathe(String animal){
if(鱼.equals(animal)){
System.out.println(animal+呼吸水);
}else{
System.out.println(animal+呼吸空气);
}
}
}public class Client{
public static void main(String[] args){
Animal animal = new Animal();
animal.breathe(牛);
animal.breathe(羊);
animal.breathe(猪);
animal.breathe(鱼);
}
}breathe方法,而对原有代码的修改会对调用“猪”“牛”“羊”等相关功能带来风险,也许某一天你会发现程序运行的结果变为“牛呼吸水”了。这种修改方式直接在代码级别上违背了单一职责原则,虽然修改起来最简单,但隐患却是最大的。还有一种修改方式:
class Animal{
public void breathe(String animal){
System.out.println(animal+呼吸空气);
}
public void breathe2(String animal){
System.out.println(animal+呼吸水);
}
}
public class Client{
public static void main(String[] args){
Animal animal = new Animal();
animal.breathe(牛);
animal.breathe(羊);
animal.breathe(猪);
animal.breathe2(鱼);
}
}里氏替换原则(Liskov?Substitution?Principle)如果对每一个类型为 T1的对象 o1,都有类型为 T2 的对象o2,使得以 T1定义的所有程序 P 在所有的对象 o1 都代换成 o2 时,程序 P 的行为没有发生变化,那么类型 T2 是类型 T1 的子类型。所有引用基类的地方必须能透明地使用其子类的对象。class A{
public int func1(int a, int b){
return a-b;
}
}
public class Client{
public static void main(String[] args){
A a = new A();
System.out.println(100-50=+a.func1(100, 50));
System.out.print
您可能关注的文档
- 《登记的作用.doc
- 《设计字体下载.doc
- 《登革热疫情现场调查处理规范.doc
- 《设计学习资料.doc
- 《设计学原理参考.doc
- 《登记公司关于限售股份的业务指南.doc
- 《设计学概论必考点复习.doc
- 《设计学概论.doc
- 《设计学概论手打删减版.doc
- 《白云区启明中学概况.doc
- 2024年证券分析与咨询服务项目投资申请报告代可行性研究报告.docx
- 2024年铬酸酐项目资金申请报告代可行性研究报告.docx
- 2024年清洁胶项目资金申请报告代可行性研究报告.docx
- 2024年肉松饼项目投资申请报告代可行性研究报告.docx
- 2024年陆上泵项目资金需求报告代可行性研究报告.docx
- 2024年未硫化复合橡胶及其制品项目资金需求报告代可行性研究报告.docx
- 2024年精密温控节能设备项目资金筹措计划书代可行性研究报告.docx
- 2024年汽车覆盖件模具项目资金筹措计划书代可行性研究报告.docx
- 宋词行书钢笔字帖.pdf
- 我的暑假生活作文三年级300字10篇.pdf
最近下载
- 刍议核心素养理念下小学道德与法治情境教学研究-来源:中国校外教育(第2020022期)-中国儿童中心.pdf VIP
- 屋顶分布式光伏发电项目可行性研究报告2.doc
- QC诊断师培训分享试题.docx
- 结题鉴定表.doc
- 北师大版七上《去括号》说课稿2.pdf
- 对被执行人的拘留申请书.docx VIP
- 黑龙江省齐齐哈尔市铁峰区2023-2024学年九年级上学期期中考试英语试题.pdf VIP
- 肾脏疾病生活质量简表(KidneyDiseaseQualityofLifeshortForm1.3,KDQOL-SFTM1.3).pdf
- 《税法》说课课件.pptx VIP
- ASTM C231_C231M-24 Standard Test Method for Air Content of Freshly Mixed Concrete by the Pressure Method 用压力法测定新拌混凝土中空气含量的标准试验方法.pdf
文档评论(0)