Java编程问题

Java编程问题不要在意最后面的几个数字... Java编程问题不要在意最后面的几个数字 展开
 我来答
str夜风
2017-06-12 · TA获得超过272个赞
知道小有建树答主
回答量:333
采纳率:68%
帮助的人:197万
展开全部
包名改成你自己的
package test;

public class Student {
    private int no;
    private String name;
    private int age;
    private int count;
    public Student(int no,String name,int age) {
        this.no=no;
        this.name=name;
        this.age=age;
        count++;
    }

    public int getNo() {
        return no;
    }

    public void setNo(int no) {
        this.no = no;
    }

    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 int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    @Override
    public String toString() {
        return "学号:" + no + "   姓名:" + name + "   年龄:" + age;
    }

    public static void main(String[] args) {
        Student stu=new Student(1,"zhangsan",22);
        System.out.println(stu.toString());
        stu.setName("lisi");
        stu.setAge(25);
        System.out.println(stu.toString());
    }
}
水为痕
2017-06-12 · 超过21用户采纳过TA的回答
知道答主
回答量:60
采纳率:0%
帮助的人:15.7万
展开全部
Public Class Student
{
private string no;
private string name;
private int age;
private static int count = 0;
Public Student(string no,string name,string age)
{
this.no = no;
this.name = name;
this.age = age;
count++;
}
public void setNo(string no)
{
this.no = no;
}
public string getNo()
{
return this.no;
}
public void setName(string name)
{
this.name = name;
}
public string getName()
{
return this.name;
}
public void setAge(string age)
{
this.age = age;
}
public string getAge()
{
return this.age;
}
public string toString()
{
return "no:"+this.no+",+name:"+this.name+",age:"+this.age;
}
public int getCount()
{
return count;
}
public static void main(string[] args)
{
Student stu = new Student("1205107777","Merle",10);
Student stu2 = new Student("1205107778","JACK",15);
system.println("Info of Student1:"+stu.toString());
system.println("Info of Student2:"+stu2.toString());
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2017-06-12
展开全部
public class Student{
    private String no;
    private String name;
    private String age;
    
    public Student(String no,String name,String age){
        this.no=no;
        this.name=name;
        this.age=age;
    }
    .
    .
    .
    .
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式