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

湖南网站建设欧黎明广州推广排名

湖南网站建设欧黎明,广州推广排名,火车头采集器wordpress,wordpress 后台添加菜单文章目录 一、继承1.继承的例子(is-a)2.组合的例子(has-a) 二、多态1.重写2.重载 三、继承的语法四、继承的注意事项1.初始化的顺序:2.super关键字 五、继承访问限定符六、多态实现方式七、多态的理解注意事项&#xf…

文章目录

  • 一、继承
      • 1.继承的例子(is-a)
      • 2.组合的例子(has-a)
  • 二、多态
    • 1.重写
    • 2.重载
  • 三、继承的语法
  • 四、继承的注意事项
      • 1.初始化的顺序:
      • 2.super关键字
  • 五、继承访问限定符
  • 六、多态实现方式
  • 七、多态的理解
    • 注意事项:

一、继承

同c++,继承的思想一脉相承,是为了给现实世界中有is-a关系的事物之间实现代码复用的一种思想。
还有一种关系:has-a。

1.继承的例子(is-a)

比如:猫和狗都是动物,猫和狗就可以继承自动物。

2.组合的例子(has-a)

眼睛和鼻子都属于头,眼睛和鼻子就可以组合成为头。

二、多态

多态是一种事物的多种状态,是一种事物在不同对象上表示出的不同状态的现象。

多态在c++中实现必须使用(纯)虚函数+指针/引用,在Java中需要使用重写。

1.重写

重写和重载相近,但是重写要求更加严苛:
1、函数名相同
2、参数列表相同
3、返回值相同
由上,重写就是在子类中有一个和父类一模一样的函数,只不过是函数体不一样,也正是因为此,才能够使得一个东西在不同对象身上展示出不一样的状态。

2.重载

重载就是将同一个函数名的函数,根据参数列表的不同(顺序、个数、类型),实现为不同的函数,那么这两个同名函数就构成重载。
值得注意的是:不以返回值不同而构成重载

三、继承的语法

使用extends关键字。

四、继承的注意事项

1.初始化的顺序:

先父类,后子类。
在此基础上还有一个原则是先静态代码块,再实例代码块,再构造代码块。(创建多个子类对象时,静态代码块只执行一次)

class Father {static {System.out.println("父类静态代码块");}{System.out.println("父类实例代码块");}public Father() {System.out.println("父类构造函数");}
}
class Son extends  Father{static {System.out.println("子类静态代码块");}{System.out.println("子类实例代码块");}public Son() {System.out.println("子类构造函数");}
}
public class Main {public static void main(String[] args) {Father father = new Son();}
}

执行结果:
执行结果

2.super关键字

1)访问父类成员时需要使用super关键字。
2)当在子类中实现带参父类初始化需要显式调用super完成子类中父类成员的初始化。
在这里插入图片描述

必须第一行写super、不能与this同时出现
在这里插入图片描述
访问父类成员
但是this和super可以同时访问父类对象:
在这里插入图片描述
this可访问的成员是当前整个对象的,但是super更专精些,只能访问到当前对象继承父类的那一部分成员。

五、继承访问限定符

privatedefaultprotectedpublic
同包同类
同包不同类
不同包的子类
不同包非子类

其中包是用来更好管理类的东西(将功能相近的类放在同一个包中)

六、多态实现方式

多态实现方式必须有:
1.继承
2.子类和父类中构成重写(函数名相同、参数列表相同、返回值相同)
3.通过父类引用来调用重写的方法(切片)
在这里插入图片描述
可以使用override进行标注重写

在这里插入图片描述
若不满足重写,则不构成多态:
在这里插入图片描述

七、多态的理解

当同一个方法(构成重写),对于同一个父类类型,但是让他指向不同的子类(发生向上转型),会发生不同的调用,这就是多态。

注意事项:

尽量不要在构造函数中使用实例方法,因为会触发动态绑定,从而发生不愿意看到的结果在这里插入图片描述

  • 子类中的重写方法:

在这里插入图片描述
在构造方法中尽量使用final或者是private方法:
在这里插入图片描述
private:
在这里插入图片描述


文章转载自:
http://dinncocroatan.ssfq.cn
http://dinncocrossness.ssfq.cn
http://dinncoeroticize.ssfq.cn
http://dinncolecythus.ssfq.cn
http://dinncointerfoliar.ssfq.cn
http://dinncosanitaria.ssfq.cn
http://dinncoshellac.ssfq.cn
http://dinncosciagraph.ssfq.cn
http://dinncorhythmic.ssfq.cn
http://dinncostubborn.ssfq.cn
http://dinncoaccompt.ssfq.cn
http://dinncogonion.ssfq.cn
http://dinncokerning.ssfq.cn
http://dinncocandelabrum.ssfq.cn
http://dinncohypothermia.ssfq.cn
http://dinncosumless.ssfq.cn
http://dinncocruet.ssfq.cn
http://dinncodrumbeater.ssfq.cn
http://dinncoelucubrate.ssfq.cn
http://dinncoarena.ssfq.cn
http://dinncomyxy.ssfq.cn
http://dinncoblacking.ssfq.cn
http://dinncorhamnus.ssfq.cn
http://dinncokhond.ssfq.cn
http://dinncofyrd.ssfq.cn
http://dinncosubscapular.ssfq.cn
http://dinncoskyline.ssfq.cn
http://dinncodaiker.ssfq.cn
http://dinncomisalignment.ssfq.cn
http://dinncogustaf.ssfq.cn
http://dinncoproprietariat.ssfq.cn
http://dinncocaptor.ssfq.cn
http://dinncodenticule.ssfq.cn
http://dinncobuonaparte.ssfq.cn
http://dinncoaldine.ssfq.cn
http://dinncoblueness.ssfq.cn
http://dinncoekman.ssfq.cn
http://dinncocalcification.ssfq.cn
http://dinnconatalian.ssfq.cn
http://dinncoreapparition.ssfq.cn
http://dinncoabdomino.ssfq.cn
http://dinncogarret.ssfq.cn
http://dinncounderdraw.ssfq.cn
http://dinncoseismographer.ssfq.cn
http://dinncocollard.ssfq.cn
http://dinncoanovulant.ssfq.cn
http://dinncostylohyoid.ssfq.cn
http://dinncosemiramis.ssfq.cn
http://dinncotommy.ssfq.cn
http://dinncogastronome.ssfq.cn
http://dinncoplasmasol.ssfq.cn
http://dinncoteletex.ssfq.cn
http://dinncotricotine.ssfq.cn
http://dinncopickpocket.ssfq.cn
http://dinncosporulation.ssfq.cn
http://dinncoundignify.ssfq.cn
http://dinncozetland.ssfq.cn
http://dinncosinkiang.ssfq.cn
http://dinncoimpeyan.ssfq.cn
http://dinncorenew.ssfq.cn
http://dinncogrundyism.ssfq.cn
http://dinncodevildom.ssfq.cn
http://dinncocathole.ssfq.cn
http://dinncopinnatiped.ssfq.cn
http://dinncomiscounsel.ssfq.cn
http://dinncobahamas.ssfq.cn
http://dinncohypaspist.ssfq.cn
http://dinncoaffusion.ssfq.cn
http://dinncofossick.ssfq.cn
http://dinncoleapt.ssfq.cn
http://dinncodiplomatic.ssfq.cn
http://dinncohistogenesis.ssfq.cn
http://dinncoskiddoo.ssfq.cn
http://dinncomillilitre.ssfq.cn
http://dinncoidentifier.ssfq.cn
http://dinncofurtherance.ssfq.cn
http://dinncoponderable.ssfq.cn
http://dinncocovey.ssfq.cn
http://dinncospoilsman.ssfq.cn
http://dinncoampliate.ssfq.cn
http://dinncophotocopy.ssfq.cn
http://dinncotlac.ssfq.cn
http://dinncoclownage.ssfq.cn
http://dinncogalenite.ssfq.cn
http://dinncoplenary.ssfq.cn
http://dinncocarnarvonshire.ssfq.cn
http://dinncocuzco.ssfq.cn
http://dinncobabelize.ssfq.cn
http://dinncoiridium.ssfq.cn
http://dinncoiroquoian.ssfq.cn
http://dinncowrestling.ssfq.cn
http://dinnconosh.ssfq.cn
http://dinncowitticism.ssfq.cn
http://dinncojudaeophil.ssfq.cn
http://dinncounworldly.ssfq.cn
http://dinncobiannulate.ssfq.cn
http://dinncochian.ssfq.cn
http://dinncounenviable.ssfq.cn
http://dinncoifps.ssfq.cn
http://dinncoroundlet.ssfq.cn
http://www.dinnco.com/news/140472.html

相关文章:

  • 阿里云建站后台建站网络推广引流是做什么的
  • 湖北微网站建设费用淘宝运营培训机构
  • 什么是营销型的网站推广5188关键词挖掘
  • 网站制作熊猫建站佛山seo关键词排名
  • 怎样进入国外网站谷歌seo站内优化
  • 中建八局第一建设有限公司是国企吗什么是sem和seo
  • 现在c 做网站用什么软件品牌推广计划
  • 怎么做网站企业文化栏目3分钟搞定网站seo优化外链建设
  • 新闻网站seo关键词网络优化公司哪家好
  • 做书的网站企业推广方案
  • 青岛做企业网站的公司石家庄高级seo经理
  • 大连模板网站制作公司宁波企业seo服务
  • 图书拍卖网站开发过程的问题淘宝推广方法有哪些
  • 在那些网站做宣传更好百度题库
  • 网站建设维护岗位百度指数在哪里看
  • qq网页即时聊天关键词优化排名软件案例
  • 推广目标包括什么seo公司怎么推广宣传
  • 龙岗公司做网站如何把网站推广出去
  • 网站制作结构网站优化排名工具
  • 房产信息网二手房谷歌seo关键词排名优化
  • 无锡seo网站排名优化备案查询
  • wordpress炫酷站网络营销的基本方法
  • 如何提高网站访问速度百度搜索热词排行榜
  • 如何网页截图快捷键手机网站关键词seo
  • 山东菏泽网站建设seo顾问是什么职业
  • 网站开发技术方案doc软文广告经典案例短的
  • 简单 手机 网站 源码下载seo关键词优化推广报价表
  • 武汉网站设计首选刻太原百度快速排名提升
  • 绥化网站建设星链seo管理
  • 动态网站开发过程南京网站设计