java定义一个公开类student,包含三个私有成员方法:学号,姓名,年龄,两个公开方法:set

java定义一个公开类student,包含三个私有成员方法:学号,姓名,年龄,两个公开方法:setage()设置参数设置年龄,printinfo()输出学生信息。一个有参... java定义一个公开类student,包含三个私有成员方法:学号,姓名,年龄,两个公开方法:setage()设置参数设置年龄,printinfo()输出学生信息。一个有参构造函数,设置学号姓名,在main方法中,创建一个student对象(1101,张小丽,16),并输出学生信息嗯 展开
 我来答
1054731321
2015-12-27 · TA获得超过205个赞
知道小有建树答主
回答量:106
采纳率:100%
帮助的人:52万
展开全部

public class Student {
    
    public static void main(String[] args) {
        Student student = new Student(1101,"张小丽",16);
        System.out.println(student.printinfo());
    }
    
    /** 学号  */
    private  int no;
    
    /** 姓名  */
    private String name;
    
    /** 年龄  */
    private int age;
    
    
    
    /**
     * 构造方法
     * 
     * @param no
     * @param name
     * @param age
     */
    public Student(int no, String name, int age) {
        super();
        this.no = no;
        this.name = name;
        this.age = age;
    }

    /**
     * Setter method for property <tt>age</tt>.
     * 
     * @param age value to be assigned to property age
     */
    public void setAge(int age) {
        this.age = age;
    }
    
    /**
     * 打印学生信息
     * 
     * @return
     */
    public String printinfo(){
        return "Student [age=" + age + ", name=" + name + ", no=" + no + "]";
    }

}
新叶给力
推荐于2017-09-12 · TA获得超过323个赞
知道小有建树答主
回答量:258
采纳率:50%
帮助的人:68.8万
展开全部
public class Student1 {
private int num;
private String name;
private int age;
public void setage(int age)
{
this.age=age;
}

public String printinfo() {
return "Student1 [num=" + num + ", name=" + name + ", age=" + age + "]";

}

public Student1(int num,String name,int age)
{
this.num=num;
this.age=age;
this.name=name;
}
}
追问
谢谢你!
题中还得在main方法中创建对象student等等???????
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式