黑马程序员技术交流社区
标题:
类中调用本类对象的私有成员问题~~
[打印本页]
作者:
倪杭乘
时间:
2012-5-9 13:24
标题:
类中调用本类对象的私有成员问题~~
本帖最后由 倪杭乘 于 2012-5-9 13:26 编辑
程序比较长,直接看后面的就行,实现comparable接口,覆盖compareTo方法中
public class Student implements Comparable<Student>{
private String name;
private int ch,en,ma,sum;
public Student(String name, int ch, int en, int ma) {
super();
this.name = name;
this.ch = ch;
this.en = en;
this.ma = ma;
sum = ch+en+ma;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getCh() {
return ch;
}
public void setCh(int ch) {
this.ch = ch;
}
public int getEn() {
return en;
}
public void setEn(int en) {
this.en = en;
}
public int getMa() {
return ma;
}
public void setMa(int ma) {
this.ma = ma;
}
public int getSum() {
return sum;
}
public void setSum(int sum) {
this.sum = sum;
}
@Override
public int compareTo(Student o) {
int temp = sum-o.sum;
return temp==0?o.name.compareTo(name):temp;
}
}
复制代码
作者:
倪杭乘
时间:
2012-5-9 13:26
compareTo中传入o对象,已经在o对象中封装了私有变量sum,为什么还能通过o.sum方法,如果o中有私有方法也能通过o直接调用,这是为什么
作者:
李啸
时间:
2012-5-9 13:28
没看你上面的代码 首先建议你在写本类中的变量的时候在前面加上this关键字这样有助于代码的可读性
您的compareTo方法写的没错首先判断总分的大小如果一样再去判断姓名的码表的大小 我觉得没错
作者:
It's_Zero
时间:
2012-5-9 15:17
所有变量在类本体中是可以直接被调用的,如果是通过外部类或者包外的类调用私有变量则需要添加set get方法
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2