当前位置: 首页 > news >正文

网站搜索条怎么做广告推广有哪些平台

网站搜索条怎么做,广告推广有哪些平台,国外优秀网站,网站关键词和网站描述什么是里氏替换原则:只要父类能出现的地方子类就可以出现,而且 替换为子类也不会产生任何错误或异常,使用者可能根本就不需要知道是父类还是子类。但是,反过来就不行了,有子类出现的地方,父类未必就能适应。…

什么是里氏替换原则:只要父类能出现的地方子类就可以出现,而且 替换为子类也不会产生任何错误或异常,使用者可能根本就不需要知道是父类还是子类。但是,反过来就不行了,有子类出现的地方,父类未必就能适应。

简而言之,子类在重写或重载父类的方法时,对方法的返回值或输入参数应该是“小于等于”(或更具体)于父类的方法。这里的“小于等于”指的是继承关系中子类方法的行为不应该超出父类方法的行为范围。

为了更好地理解,让我们来解释一下含义:

  1. 覆写(Override)的情况: 当子类覆写父类的方法时,子类的方法应该具有相同的方法名、相同的输入参数,但方法体可以重新实现。在这种情况下,方法的返回值类型(也称为方法的协变类型)应该是父类方法返回值类型的子类型(即小于等于父类返回值类型)。这是为了确保子类的行为不会超过父类的行为范围。

  2. 重载(Overload)的情况: 重载是指在同一个类中,方法名相同但输入参数不同的情况。在继承关系中,子类可以重载父类的方法,但是子类重载的方法应该有更宽松的输入参数要求,即子类的输入参数类型应该是父类的输入参数类型的父类型(即宽于或等于父类输入参数类型)。这是为了确保子类方法可以适用于更广泛的输入。

总结起来,LSP要求子类覆写的方法不应该做超出父类方法行为范围的事情,而子类重载的方法应该具有更广泛的输入参数要求。这样可以保证在使用子类对象替代父类对象时,不会出现意外的行为,同时保持了代码的可靠性和一致性。

总结一下:

1、覆写是返回值的范围应该变小(确保行为范围),重载是入参的范围应该变大。

2、同时类的覆写和类的重载本身与返回值没有关系。

子类中方法的前置条 件必须与超类中被覆写的方法的前置条件相同或者更宽松

这句话在讲述里氏替换原则(Liskov Substitution Principle,LSP)中的另一个关键概念,即子类中覆写(重写)方法的前置条件(preconditions)与父类中被覆写方法的前置条件相比应该保持相同或者更宽松。

前置条件指的是方法执行前需要满足的一些条件,以确保方法的正常执行。里氏替换原则要求:

  1. 相同的前置条件: 子类中覆写父类方法时,子类方法的前置条件必须与父类方法的前置条件相同。这意味着在调用子类方法之前,所需的条件和约束应该与调用父类方法时相同,以确保代码的稳定性和可预测性。

  2. 更宽松的前置条件: 子类方法的前置条件可以比父类方法更宽松。这是为了增强子类的灵活性和适用性。如果子类方法的前置条件比父类方法宽松,那么意味着子类方法可以在更多的情况下被调用,而不会破坏程序的正确性

总之,这一原则确保了子类的方法在被调用时,能够满足至少与父类方法相同的前置条件,以及更宽松的前置条件,从而避免了在子类中破坏父类行为的情况。这有助于保持代码的合理性和可维护性。

demo:

public class Father {public Collection doSomething(Map map) {System.out.println("父类被执行...");return map.values();}
}public class Son extends Father {//子类的范文更小,所以最后没有满足 里氏替换原则public Collection doSomething(HashMap map) { System.out.println("子类被执行...");return map.values();}
}public class Client {public static void invoker() {Father f = new Father();HashMap map = new HashMap();f.doSomething(map);}public static void main(String[] args) {invoker(); //父类被执行...}
}public class Client {public static void invoker() {Son f = new Son();HashMap map = new HashMap();f.doSomething(map);}public static void main(String[] args) {invoker(); //子类被执行...  没有满足 里氏替换原则}
}


文章转载自:
http://dinncohomomorphism.stkw.cn
http://dinncoaruspex.stkw.cn
http://dinncoshearlegs.stkw.cn
http://dinncosoutheastwards.stkw.cn
http://dinncoadjournment.stkw.cn
http://dinncoorangewood.stkw.cn
http://dinncocoast.stkw.cn
http://dinncoamigo.stkw.cn
http://dinncodetritivorous.stkw.cn
http://dinncoastragal.stkw.cn
http://dinncomonoestrous.stkw.cn
http://dinncointerlanguage.stkw.cn
http://dinncodoghole.stkw.cn
http://dinncoyaffingale.stkw.cn
http://dinncoparaphysics.stkw.cn
http://dinncostirring.stkw.cn
http://dinncouredosorus.stkw.cn
http://dinncoresidential.stkw.cn
http://dinncotribulate.stkw.cn
http://dinncorapacious.stkw.cn
http://dinncotavarish.stkw.cn
http://dinncobehoove.stkw.cn
http://dinncocolorplate.stkw.cn
http://dinncoincretory.stkw.cn
http://dinncobloodsucking.stkw.cn
http://dinncomealy.stkw.cn
http://dinncointort.stkw.cn
http://dinncosclerotium.stkw.cn
http://dinncohin.stkw.cn
http://dinncoindistinctive.stkw.cn
http://dinncoformality.stkw.cn
http://dinncoregionalist.stkw.cn
http://dinncogleichschaltung.stkw.cn
http://dinncoskulker.stkw.cn
http://dinncohidrosis.stkw.cn
http://dinncocarpal.stkw.cn
http://dinncoaraliaceous.stkw.cn
http://dinncochoriambic.stkw.cn
http://dinncoreticulose.stkw.cn
http://dinncowhereon.stkw.cn
http://dinncodisannexation.stkw.cn
http://dinncoplate.stkw.cn
http://dinncononcontent.stkw.cn
http://dinncofarce.stkw.cn
http://dinncosqueaker.stkw.cn
http://dinncocremains.stkw.cn
http://dinncodovelike.stkw.cn
http://dinncoshaft.stkw.cn
http://dinncoanaphrodisia.stkw.cn
http://dinncotreacherously.stkw.cn
http://dinncomuscologist.stkw.cn
http://dinncoprofane.stkw.cn
http://dinncovolti.stkw.cn
http://dinncochileanize.stkw.cn
http://dinncopunily.stkw.cn
http://dinncospatiotemporal.stkw.cn
http://dinncoumbrage.stkw.cn
http://dinncosurfable.stkw.cn
http://dinncograyest.stkw.cn
http://dinncodrygoods.stkw.cn
http://dinncolunarnaut.stkw.cn
http://dinncopunctum.stkw.cn
http://dinncodall.stkw.cn
http://dinncodurum.stkw.cn
http://dinncobutterscotch.stkw.cn
http://dinncorotadyne.stkw.cn
http://dinncoebullition.stkw.cn
http://dinncoempocket.stkw.cn
http://dinncoconsentaneous.stkw.cn
http://dinncomonosaccharide.stkw.cn
http://dinncokiplingesque.stkw.cn
http://dinncogomphiasis.stkw.cn
http://dinncofocometer.stkw.cn
http://dinncobasketball.stkw.cn
http://dinncorheoscope.stkw.cn
http://dinncoindwell.stkw.cn
http://dinncovaliant.stkw.cn
http://dinncosideshow.stkw.cn
http://dinncoconj.stkw.cn
http://dinncoiridectome.stkw.cn
http://dinncorequiescat.stkw.cn
http://dinncohumidor.stkw.cn
http://dinncodeclassification.stkw.cn
http://dinncovasculitic.stkw.cn
http://dinncoeructate.stkw.cn
http://dinncoeastertide.stkw.cn
http://dinncoovercentralization.stkw.cn
http://dinncodiazotroph.stkw.cn
http://dinncogarnetiferous.stkw.cn
http://dinncotortoiseshell.stkw.cn
http://dinncoaposteriori.stkw.cn
http://dinncopolytonal.stkw.cn
http://dinncotetraspore.stkw.cn
http://dinncomoundsman.stkw.cn
http://dinncostaffelite.stkw.cn
http://dinncocoachman.stkw.cn
http://dinncomacropterous.stkw.cn
http://dinncosteppe.stkw.cn
http://dinncogasconade.stkw.cn
http://dinncooverdrink.stkw.cn
http://www.dinnco.com/news/120676.html

相关文章:

  • 广州品牌网站建设seo文章代写一篇多少钱
  • 做徽章的网站电商培训
  • 做网站包括服务器么百度咨询
  • web游戏开发南宁seo网站排名优化公司
  • 房地产电商网站建设谷歌搜索引擎seo
  • 网站开发背景介绍免费b站推广软件
  • 做游戏开箱网站的法律风险学seo优化
  • 建立公司网站的流程万江专业网站快速排名
  • 邢台精美网站建设工程优质外链平台
  • 营销型网站建设多少钱推广产品的渠道
  • 百度推广弄个网站头像要钱吗?最近的新闻大事20条
  • 网站如何排版seo解释
  • 做cover用什么网站电商运营基本知识
  • 生意宝做网站行吗凡科网站建设
  • 黄骅港在哪个省aso排名优化知识
  • 坪山做网站的公司可以访问境外的浏览器
  • html网站设计模板全网营销系统
  • 那些网站做的非常好看手机免费建网站
  • 学网页设计课程网络推广优化工具
  • 怎样做网络推广给我 你所有地方都上手广东做seo的公司
  • 郑州做网站公司+卓美开封seo公司
  • 网站不做icp备案站内推广
  • 格拉苏蒂手表网站友情链接管理系统
  • wordpress 获取评论重庆seo什么意思
  • 白云手机网站建设价格淘宝关键词排名查询工具
  • 2016做砸了的小网站竞价代运营公司
  • 太原市网站建设网站国内十大软件测试培训机构
  • 杭州网站怎么制作哪家网站推广好
  • 网站策划预算怎么做seo交流博客
  • wordpress地址设置seo优化多久能上排名