编写一个java程序,封装一个student类的对象,定义一个表示学生的类student
编写一个java程序,封装一个student类的对象,定义一个表示学生的类student包括学号,班级,性别,年龄域,以及获得学号,获得性别,获得姓名,获得年龄,修改年龄...
编写一个java程序,封装一个student类的对象,定义一个表示学生的类student包括学号,班级,性别,年龄域,以及获得学号,获得性别,获得姓名,获得年龄,修改年龄方法。另加一个public string tostring()方法把student类对象所有属性信息组合成一个字符串,并有检验这个功能的程序体现
展开
1个回答
展开全部
public class Student{
private String num;
private String sex;
private String name;
private int age;
public Student(String num,String sex,String name){
this.num=num;
this.sex=sex;
this.name=name;
}
public String getNum(){
return this.num;
}
public String getSex(){
return this.sex;
}
public String getName(){
return this.name;
}
public int getAge(){
return this.age;
}
public void setAge(int age){
this.age=age;
}
public String toString(){
return "My name is %s, I'm %s years old. I'm a %s. My student num is %s";
}
}
public class Test{
public static void main(String[] args){
Student student=new Student("N01","boy","zhangsan");
student.setAge(18);
System.out.priltln(String.format(student.toString(),student.getName(),student.getAge().toString(),student.getSex(),student.getNum()));
}
}
ok啦 就是这样
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询