JAVA程序编写一个学生类Student

1)学生类Student属性有:id;long型,代表学号name;String类对象,代表姓名age;int型,代表年龄sex;boolen型,代表性别(其中:true... 1)学生类Student属性有:
id;long型,代表学号
name;String类对象,代表姓名
age;int型,代表年龄
sex;boolen型,代表性别
(其中:true表示男,false表示女)
phone;String类对象,代表联系电话
(2)学生类方法有:
Student(long i,String n,int a,boolean s,long p):有参构造函数,形参表中的参数分别初始化学号、年龄、性别和联系电话。
int getAge()( ):获取年龄作为方法的返回值。
long getphone( ):获取联系电话作为方法的返回值。
public String toString( ):以姓名:联系电话的形式作为方法的返回值。
展开
 我来答
mytel_789
推荐于2016-03-26 · TA获得超过606个赞
知道小有建树答主
回答量:338
采纳率:0%
帮助的人:345万
展开全部
Public Class Student{
Public long id;
Public String name;
Public int age;
Public boolean sex;
Public long phone;
Public Student(long i,String n,int a,boolean s,long p){
this.id = i;
this.name = n;
this.age = a;
this.sex = s;
this.phone = p;
}
Public int getage(){
return this.age;
}
Public long getphone(){
return this.phone;
}
Public String toString(){
return this.name;
}
Public static void main(String[]args){
Student student = new Student(01,"李明",20,true,13xxx);
System.out.println(student.age());
System.out.println(student.getphone());
System.out.println(student.toString());
}
}
lucky500
2006-02-11 · TA获得超过4322个赞
知道小有建树答主
回答量:522
采纳率:0%
帮助的人:730万
展开全部
//以下是程序段在自己机子上已经编译运行过了你自己试下
public class Student{
public long id;
public String name;
public int age;
public boolean sex;
public long phone;
public Student(long i,String n,int a,boolean s,long p){
this.id = i;
this.name = n;
this.age = a;
this.sex = s;
this.phone = p;
}
public int getage(){
return this.age;
}
public long getphone(){
return this.phone;
}
public String toString(){
return this.name;
}
public static void main(String[]args){
Student student = new Student(01,"李明",20,true,8888);
System.out.println(student.getage());
System.out.println(student.getphone());
System.out.println(student.toString());
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友d9d86eba7
2006-02-11 · TA获得超过264个赞
知道小有建树答主
回答量:725
采纳率:0%
帮助的人:313万
展开全部
咋不自己写呢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9dee58ad1
2006-02-11
知道答主
回答量:90
采纳率:0%
帮助的人:0
展开全部
no
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式