求高手帮忙做道 java 题目~1
作业6(1)编写一个程序,程序中包括一个计算机类Computer:Computer类具有品牌、产地、CPU类型、内存容量、硬盘大小、是否带有刻录光驱、购买日期、购买地点、...
作业6
(1)编写一个程序,程序中包括一个计算机类Computer:
Computer类具有品牌、产地、CPU类型、内存容量、硬盘大小、是否带有刻录光驱、购买日期、购买地点、价格等属性。
Computer类包括以下几类方法:
①对应于各个属性的get()方法与set()方法;
②多个构造方法;
③dispMessages()方法,该方法输出计算机对象的一些属性信息。
还有一个测试类Test1,生成几个Computer类对象并输出相关信息。 展开
(1)编写一个程序,程序中包括一个计算机类Computer:
Computer类具有品牌、产地、CPU类型、内存容量、硬盘大小、是否带有刻录光驱、购买日期、购买地点、价格等属性。
Computer类包括以下几类方法:
①对应于各个属性的get()方法与set()方法;
②多个构造方法;
③dispMessages()方法,该方法输出计算机对象的一些属性信息。
还有一个测试类Test1,生成几个Computer类对象并输出相关信息。 展开
3个回答
展开全部
一楼说的也是哦,Java就是要自己去编。不然很难有成就的,给你个类似的例子:
package Test;
//形状类
abstract class Shape {
public abstract void getArea();
}
//矩形类
class Rectangle extends Shape{
float a;
float b;
public Rectangle(float a,float b){
this.a = a;
this.b = b;
}
public void getArea(){
float Area = a* b;
System.out.println("矩形的面积为:"+Area);
}
}
//三角形
class Triangle extends Shape{
float a;
float h;
public Triangle(float a,float h){
this.a = a;
this.h = h;
}
public void getArea(){
float Area=(a*h)/2;
System.out.println("三角形的面积为:"+Area);
}
}
//圆形
class Circle extends Shape{
float r;
public Circle(float r) {
this.r = r;
}
public void getArea(){
float Area=(float)(Math.PI*r*r);
System.out.println("圆形的面积为:"+Area);
}
}
//测试类
public class TestShape {
public TestShape(Shape s) {
s.getArea();
}
public static void main(String[] args) {
//矩形面积
Shape jx=new Rectangle(5,6);
TestShape ts=new TestShape(jx);
//三角形面积
Shape sjx=new Triangle(4,5);
TestShape ts1=new TestShape(sjx);
//圆形面积
Shape yx=new Circle(10);
TestShape ts2=new TestShape(yx);
}
}
package Test;
//形状类
abstract class Shape {
public abstract void getArea();
}
//矩形类
class Rectangle extends Shape{
float a;
float b;
public Rectangle(float a,float b){
this.a = a;
this.b = b;
}
public void getArea(){
float Area = a* b;
System.out.println("矩形的面积为:"+Area);
}
}
//三角形
class Triangle extends Shape{
float a;
float h;
public Triangle(float a,float h){
this.a = a;
this.h = h;
}
public void getArea(){
float Area=(a*h)/2;
System.out.println("三角形的面积为:"+Area);
}
}
//圆形
class Circle extends Shape{
float r;
public Circle(float r) {
this.r = r;
}
public void getArea(){
float Area=(float)(Math.PI*r*r);
System.out.println("圆形的面积为:"+Area);
}
}
//测试类
public class TestShape {
public TestShape(Shape s) {
s.getArea();
}
public static void main(String[] args) {
//矩形面积
Shape jx=new Rectangle(5,6);
TestShape ts=new TestShape(jx);
//三角形面积
Shape sjx=new Triangle(4,5);
TestShape ts1=new TestShape(sjx);
//圆形面积
Shape yx=new Circle(10);
TestShape ts2=new TestShape(yx);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询