黑马程序员技术交流社区

标题: new Student("张三", 22, 95) 的方式创建对象,并可以通过set和ge.. [打印本页]

作者: 天火传说    时间: 2015-6-1 21:31
标题: new Student("张三", 22, 95) 的方式创建对象,并可以通过set和ge..
package com.itheima;
/* 声明类Student,包含3个成员变量:name、age、score,要求可以通过 new Student("张三", 22, 95) 的方式创建对象,并可以通过set和get方法访问成员变量
*/
class Student {
String name;
int age;
int score;
public Student (String name,int age,int score){
        this.name=name;
        this.age=age;
        this.score=score;
}
public String getName() {
        return name;
}

public void setName(String name) {
        this.name = name;
}

public int getAge() {
        return age;
}

public void setAge(int age) {
        this.age = age;
}

public int getScore() {
        return score;
}

public void setScore(int score) {
        this.score = score;
}


       
       

}
public class Test8 {
        public static void main(String[] args) {
                Student Student=new Student("张三", 22, 95);
                System.out.println(Student.getName());
                System.out.println(Student.getScore());
                System.out.println(Student.getAge());
                Student.setName("李四");
                Student.setAge(23);
                Student.setScore(99);
                System.out.println(Student.getName());
                System.out.println(Student.getScore());
                System.out.println(Student.getAge());
               

        }
       
}



作者: 小星星2015    时间: 2015-6-1 21:49
这搞的啥。。。。




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