class Student
{
private String name;
private int age;
private int xuehao;
public String getInfo(){
return " 姓名"+name+"\t"+"年龄"+age+"\t"+"学号"+xuehao;
}
public Student(){}
public Student(String name,int age,int xuehao){
this.name=name;
this.age=age;
this.xuehao=xuehao;
}
public void setName(String name){
this.name=name;
}
public void setAge(int age){
this.age=age;
}
public void setXuehao(int xuehao){
this.xuehao=xuehao;
}
public String getName(){
return this.name;
}
public int getAge(){
return this.age;
}
public int getXuehao(){
return this.xuehao;
}
}
public class Hello
{
public static void main(String arg[]){
Student student=new Student("高小猪",5,19990713);
System.out.println(student.getInfo());
}
}