- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
11构造方法重载
方法重载定义
在一个类中,如果有多个同名但是不同参的方法,称为
“方法重载 (overload )”。所谓不同参,可能是形式参
数的个数不同,或者类型不同,顺序不同。方法重载能够
增强程序的可读性。
构造方法重载在什么情况下使用
在实际的开发中,初始化对象时会传不同的参数,因此需
要在一个类中定义多个构造方法,即进行构造方法重载。
public Cars(String co lor) {
this.co lor co lor;
}
public Cars(String co lor,double price) {
this.co lor co lor;
this.price price;
}
构造方法重载注意事项
无参的构造方法,只有在该类没有声明任何构造方法的时
候,才是默认存在的;
只要声明了其他带参的构造方法,无参的构造方法将不会
默认存在,而是必须声明才可以使用。
public c lass Cars { 如左边所示,Cars类中不
再有默认无参数构造方法,
private String co lor;
如果需要使用,必须显式
private double price;
public Cars(String co lor) { 声明无参构造方法。
this.co lor co lor;
}
}
您可能关注的文档
- analysis on the implementation of clean and honest prosecutors reflections(分析实施清洁和诚实的检察官反射).doc
- analysis- on the internet product category(在互联网上分析-产品类别).doc
- analysis on the new era of college students on mental health education system(分析新时期大学生的心理健康教育体系).doc
- analysis- on the mobile internet era- information morphology changes(分析u2014u2014在移动互联网时代信息形态变化).doc
- analysis on the necessity and feasibility of building a demonstration litigation(分析构建示范诉讼的必要性和可行性).doc
- analysis on the quality and the quality of education(分析质量和教育质量).doc
- analysis on the status quo of college students job market and employment orientation(分析大学生就业市场的现状和就业取向).doc
- analysis on the students' dormitory management model(分析学生的宿舍管理模式).doc
- analysis on the level teaching and vocational school students to develop interest in learning mathematics(分析在教学水平和培养职业学校学生学习数学的兴趣).doc
- analysis on the teaching of ethnic sports(分析少数民族体育的教学).doc
文档评论(0)