黑马程序员技术交流社区

标题: compareTo(Object o)方法的问题 [打印本页]

作者: Maple_枫    时间: 2014-3-28 14:14
标题: compareTo(Object o)方法的问题
本帖最后由 Maple_枫 于 2014-4-5 11:40 编辑

public class Student implements Comparable{
        private String name;
        private Integer age;
        private double score;
        public String getName() {
                return name;
        }
        public void setName(String name) {
                this.name = name;
        }
        public Integer getAge() {
                return age;
        }
        public void setAge(Integer age) {
                this.age = age;
        }
        public double getScore() {
                return score;
        }
        public void setScore(double score) {
                this.score = score;
        }
        public Student(String name, Integer age, double score) {
                super();
                this.name = name;
                this.age = age;
                this.score = score;
        }
        public Student() {
                super();
        }
        @Override
        public int compareTo(Object o) {//这行报错,不知道怎么搞,望大神解答下
                if(((Student)o).getScore()>=this.getScore()){
                        return 1;
                }
                return -1;
        }
}


作者: aynulily    时间: 2014-3-28 17:30
亲,这是什么代码啊,这里是.NET板块,想帮你看看,无能为力了啊,看不懂,Integer不在 c#中
作者: Maple_枫    时间: 2014-3-28 17:45
aynulily 发表于 2014-3-28 17:30
亲,这是什么代码啊,这里是.NET板块,想帮你看看,无能为力了啊,看不懂,Integer不在 c#中 ...

发错区了,不知道咋删除:'(




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2