package com.itheima;
/**
声明类Student,包含3个成员变量:name、age、score,
要求可以通过 new Student("张三", 22, 95) 的方式创建对象,
并可以通过set和get方法访问成员变量
@author Administrator
*/
public class Test7
{
//建立主函数
public static void main(String[] args)
{
Student sd=new Student("张三", 22, 95);
sd.setAge(18);
sd.show();
}
}
class Student //定义一个学生的类
{
private String name;
private int age;
private int score;
//set 学生的变量
public void setName(String newname)
{
name=newname;
}
public void setAge(int newage)
{
if(newage>=0)
age=newage;
else
System.out.println("年龄错误");
}
public void setScore(int newscore)
{
if(newscore>=0&newscore<=150)
score=newscore;
else
System.out.println("分数错误");
}
//get 学生的变量
public String getName()
{
return name;
}
public int getAge()
{
return age;
}
public int getScore()
{
return score;
}
//学生初始数据
Student(String name,int age,int score)
{
this.name = name;
this.age = age;
this.score = score;
}
//打印学生的信息
public void show()
{
System.out.println("Name: " + name + ", Age: "+ age + ", Score:" + score);
}
}
|
|