Java程序设计,创建一个汽车类CarModel.java,

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java程序设计,创建一个汽车类CarModel.java,相关的知识,希望对你有一定的参考价值。

它里面有2个不同的构造函数,CarManufactory.java可以应用这些构造方法创建不同类型的汽车 CarModel.java设计要求如下: 定义style(String),color(String),category(String)注:括号中为变量类型 创建第一个构造函数,分别给以上变量赋值,要求为该构造函数定义三个形参,分别赋给相应的变量,形参的值在对象创建时给出 创建第二个构造函数,此构造函数过程为空 定义三个方法,分别返回style,color,cat

参考技术A public class CarManufactory
private String style;
private String color;
private String category;

public String getStyle()
return this.style;

public String getColor()
return this.color;

public String getCategory()
return this.category;


public CarManufactory(String style,String color,String category)
this.style = style;
this.color = color;
this.category = category;

public CarManufactory()
参考技术B public class CarManufactory
private String style;
private String color;
private String category;
public CarManufactory(String style, String color, String category)
super();
this.style = style;
this.color = color;
this.category = category;

public CarManufactory()
super();
// TODO Auto-generated constructor stub

public String getStyle()
return style;

public String getColor()
return color;

public String getCategory()
return category;

本回答被提问者采纳
参考技术C public class CarModel

private String style;
private String color;
private String category;

public CarModel(String style, String color, String category)
this.style = style;
this.color = color;
this.category = category;


public CarModel()

public String getStyle()
return style;


public String getColor()
return color;


public String getCategory()
return category;


以上是关于Java程序设计,创建一个汽车类CarModel.java,的主要内容,如果未能解决你的问题,请参考以下文章

创建型模式之--创建者模式

创建型模式之--创建者模式

创建型模式之--创建者模式

创建型模式之--创建者模式

用java创建一个汽车类(Car),为其定义两个属性:颜色和型号,为该类创建两个构造方法

JAVA程序 特急!!!!!!!!!!送分!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!