package ajhdgajhd;
class Student {
private String name; //定义name属性
private int age; //定义age属性
private static String school="大学"; //定义school属性
public Student (String name,int age)
{
this.name=name;
this.age=age;
}
public void info()
{
System.out.println("姓名:"+this.name+",年龄:"+this.age+",学校:"+school);
}
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 static String getSchool ()
{
return school;
}
public static void setSchool(String school)
{
Student.school=school;
}
}
class Examplel5
{
public static void main (String[] args)
{
Student stu1 = new Student("张三",18); //创建学生对象
Student stu2 =new Student("李四",19);
Student stu3 =new Student("王五",20);
stu1.info();
stu2.info();
stu3.info();
}
}



