Java.{定义student类,其中包括四个私有变量(name、age、sex、score)、一个构造方法和show()方法。
.{定义student类,其中包括四个私有变量(name、age、sex、score)、一个构造方法和show()方法。各成员的含义如下。变量name为字符串类型Stri...
.{定义student类,其中包括四个私有变量(name、age、sex、score)、一个构造方法和show()方法。各成员的含义如下。
变量name为字符串类型String,用于存储学生的姓名。
变量age为int类型,用于存储学生的年龄。
变量sex为boolean类型,用于存储学生的性别,男生为false,女生为true。
变量score为double类型,用于存储学生的成绩。
构造方法包括四个参数,用于为变量(name、age、sex和score)赋值。
Show()方法无参数,用于输出变量(name、age、sex和score)的值。}
12.{编写一个Application程序,程序中包括计算机类Computer,生成几个Computer类对象并输出相关信息。
Computer类具有品牌、产地、CPU类型、内存容量、硬盘大小、是否带有刻录光驱、购买日期、购买地点、价格等属性。
Computer类包括以下几类方法:
①对应于各个属性的get()方法与set()方法;
②多个构造方法;
③dispMessages()方法,该方法输出计算机对象的一些属性信息。} 展开
变量name为字符串类型String,用于存储学生的姓名。
变量age为int类型,用于存储学生的年龄。
变量sex为boolean类型,用于存储学生的性别,男生为false,女生为true。
变量score为double类型,用于存储学生的成绩。
构造方法包括四个参数,用于为变量(name、age、sex和score)赋值。
Show()方法无参数,用于输出变量(name、age、sex和score)的值。}
12.{编写一个Application程序,程序中包括计算机类Computer,生成几个Computer类对象并输出相关信息。
Computer类具有品牌、产地、CPU类型、内存容量、硬盘大小、是否带有刻录光驱、购买日期、购买地点、价格等属性。
Computer类包括以下几类方法:
①对应于各个属性的get()方法与set()方法;
②多个构造方法;
③dispMessages()方法,该方法输出计算机对象的一些属性信息。} 展开
4个回答
展开全部
该写的楼上的哥们都写了,12题和上面题目差不多,你照着改改就是
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
class Student{
public Student(){
name="xiaoming";age=22;sex=ture;score=100.0;
}
void show(){
System.out.println(name+age+sex+score);
}
public static void main(String args[]){
String name;int age;boolean sex;double score;
Student st=new Student();
st.show();
}
}
public Student(){
name="xiaoming";age=22;sex=ture;score=100.0;
}
void show(){
System.out.println(name+age+sex+score);
}
public static void main(String args[]){
String name;int age;boolean sex;double score;
Student st=new Student();
st.show();
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class StudentEntity {
private String name;
private int age;
private boolean sex;
private double score;
public StudentEntity() {
}
public StudentEntity(String name, int age, boolean sex, double score) {
this.name = name;
this.age = age;
this.sex = sex;
this.score = score;
}
public void show(StudentEntity se){
System.out.println(se.getName());
System.out.println(se.getAge());
System.out.println(se.getScore());
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getScore() {
return score;
}
public void setScore(double score) {
this.score = score;
}
public boolean isSex() {
return sex;
}
public void setSex(boolean sex) {
this.sex = sex;
}
}
private String name;
private int age;
private boolean sex;
private double score;
public StudentEntity() {
}
public StudentEntity(String name, int age, boolean sex, double score) {
this.name = name;
this.age = age;
this.sex = sex;
this.score = score;
}
public void show(StudentEntity se){
System.out.println(se.getName());
System.out.println(se.getAge());
System.out.println(se.getScore());
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getScore() {
return score;
}
public void setScore(double score) {
this.score = score;
}
public boolean isSex() {
return sex;
}
public void setSex(boolean sex) {
this.sex = sex;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询