- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
java速成第5章面向对象初级[按教材]
第五章 面向对象初级(2);以后上机课一结束就要----交作业;课堂练习;参考代码;第3周上机作业2;出现问题;
public class BusCard1 {
//属性
String no;
double money;
int kind ;//0普通卡 1 学生卡
int count; //普通卡坐车次数
BusCard1(int aMoney,String aNo,int aKind){
}
boolean save(double a){
// a为50 100的时候修改money的值
}
boolean getBus(){
//根据卡类型扣除费用
//(即修改money值)
}
void printInfo(){
}
public static void main(String[] args) {
}
};完整参考代码;第三周上机作业2 ---引申;5.2 封装性;五、类成员变量的定义;修饰符 —— static; public class Student {
String name;
int No;
String dorm;
String tel;
static int count=0;
Student(String aName,int aNo){
name=aName;
No=aNo;
count++;
}
Student(int aNo){
No=aNo;
};;Static变量 空间分配示意图;5.2.2 使用private将变量封装起来; private修饰的变量;任务5-6;任务5-6 private修饰符让Student类的数据更安全。;5.3扩展应用;任务5-7数组与对象的结合使用;;程序输出;上机作业2 演示;上机作业1;上机作业3:羊城通卡 改进;任务5-8:方法的输入参数和返回值为对象; static Student pk(Student a,Student b){
int anum=0;
int bnum=0;
if (a.score1=b.score1)
anum++;
else
bnum++;
if (a.score2=b.score2)
anum++;
else
bnum++;
if (a.sustainers=b.sustainers)
anum++;
else
bnum++;
if (anumbnum)
return a;
else
return b;
}
;//比较两个学生的信息,输出综合指数高的同学作为班长
public class useStudentPk {
static Student pk(Student a,Student b){。。。。。。。}
public static void main(String[] args) {
Student zhang=new Student(zhangsan,001,90,90,35);
Student li=new Student(lisi,002,89,90,30);
Student monitor=pk(zhang,li);
System.out.print(取胜者为:+);
}
};上机作业;public class Communication {
double mobliePhone;//移动电话
String eMail;//电子邮件
double qq;//qq号码
String telephone;//宿舍电话
public Communication(double mobliePhone, String mail, double qq, String telephone) {
super();//先不管他 下章的内容
this.mobliePhone = mobliePhone;
this.eMail = mail;
this.qq = qq;
this.telephone = telephone;
}
};public class Student {
String name;
int no;
Communication com1;
public Student(String name, int no, Communication com1) {
super();
= name;
this.no = no;
1 = com1;
}
};public class TestStudent {
public s
文档评论(0)