黑马程序员技术交流社区

标题: 基础测试题 [打印本页]

作者: 7418695lp    时间: 2014-8-5 23:23
标题: 基础测试题
自己写的这个代码,有些问题,求助啊。。



        public class Test7
        {
                 public static void main(String[] args)
       
                {
                        Student stu = new Student("张三",22,95);
                }
        }
        public class Student    //这里的这个student有个红色下划线为什么啊?
        {
            private String name;
            private int age;
          
            private int score;
            
            public Student(String name, int age,  int score)
            {
                this.name = name;
                this.age = age;
                
                this.score = score;
            }
            
           public void set (String name,int age,int score)
           {
          this.name = name;
          this.age=age;
          this.score=score;
           }
       
           public Object get ()
           {
            return this.name;
            return this.age;
            return  this.score ;
            }
       
        }
                     
                   
作者: fxwb2005    时间: 2014-8-6 01:18
本帖最后由 fxwb2005 于 2014-8-6 01:28 编辑

你把修饰Student的public去掉,
而且你最下面的get类中return了三次啊,这里也必定报错啊,你可以把要传的三个变量封装在一个对象里面再return





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