类别管理JAVA代码 java的类分为

用Java编写一个电脑的类别编写一个java类,描述对象类型具有的属性?
package cn.school.business.model;
public class Computer {
private int width;//宽度
private int height;//高度
private String cpu;//cpu类型
private String ram;//内存类型
private String disk;//硬盘
private String fan;//风扇
private String v_card;//显卡
public Computer() {
super();
// TODO Auto-generated constructor stub
}
public Computer(int width, int height, String cpu, String ram, String disk,
String fan, String vCard) {
super();
this.width = width;
this.height = height;
this.cpu = cpu;
this.ram = ram;
this.disk = disk;
this.fan = fan;
v_card = vCard;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public String getCpu() {
return cpu;
}
public void setCpu(String cpu) {
this.cpu = cpu;
}
public String getRam() {
return ram;
}
public void setRam(String ram) {
this.ram = ram;
}
public String getDisk() {
return disk;
}
public void setDisk(String disk) {
this.disk = disk;
}
public String getFan() {
return fan;
}
public void setFan(String fan) {
this.fan = fan;
}
public String getV_card() {
return v_card;
}
public void setV_card(String vCard) {
v_card = vCard;
}
}
采用抽象或接口方式设计一个面向学生的Java课程学分管理程序?下面是采用抽象类方式设计一个面向学生的Java课程学分管理程序的示例代码:
// 定义抽象类
Student
public abstract class Student {
// 学生姓名
protected String name;
// 学生学号
protected String studentNumber;
// 学生已修课程学分总和
protected double totalCredits;
// 构造方法
public Student(String name, String studentNumber) {
this.name = name;
this.studentNumber = studentNumber;
this.totalCredits = 0;
}
// 抽象方法,用于计算学生的当前学分绩点
public abstract double calculateGPA();
// 普通方法 , 用于增加学生的已修课程学分
public void addCredits(double credits) {
this.totalCredits += credits;
}
// 普通方法,用于获取学生的姓名
public String getName() {
return this.name;
}
// 普通方法,用于获取学生的学号
public String getStudentNumber() {
【类别管理JAVA代码 java的类分为】return this.studentNumber;
}
// 普通方法,用于获取学生的已修课程学分总和
public double getTotalCredits() {
return this.totalCredits;
}
}
下面是采用接口方式设计一个面向学生的Java课程学分管理程序的示例代码:
// 定义接口Student
public interface Student {
// 学生姓名
String name = "";
// 学生学号
String studentNumber = "";
// 学生已修课程学分总和
double totalCredits = 0;
// 抽象方法,用于计算学生的当前学分绩点
double calculateGPA();
// 抽象方法,用于增加学生的已修课程学分
void addCredits(double credits);
//抽象方法 , 用于获取学生的姓名
String getName();
// 抽象方法 , 用于获取学生的学号
String getStudentNumber();
// 抽象方法,用于获取学生的已修课程学分总和
double getTotalCredits();

推荐阅读