.创建一个车辆(Vehicle)类,数据成员有:weight(重量)、type(型号),方法成员有:行驶Run()、显示车辆信息ShowVehicleInfo(),还需要编写两个构造方法,一个为无参数的构造方法;另一个为带两个参数的构造方法,两个参数分别用来初始化车辆对象的型号和重量。要求在主方法中分别用两个构造方法初始化车辆类的两个实例,并分别调用方法成员。(注:方法成员中只需要指明当前方法被调用即可,比如在控制台打印出:车辆正在行驶等)。java语句
时间: 2023-05-26 16:07:32 浏览: 69
public class Vehicle {
private double weight;
private String type;
public Vehicle(){
}
public Vehicle(double weight, String type) {
this.weight = weight;
this.type = type;
}
public void Run() {
System.out.println("车辆正在行驶");
}
public void ShowVehicleInfo() {
System.out.println("车辆型号为:" + type + ",重量为:" + weight);
}
public static void main(String[] args){
Vehicle v1 = new Vehicle();
Vehicle v2 = new Vehicle(1.5, "小型车");
v1.Run();
v2.ShowVehicleInfo();
}
}
相关问题
创建一个车辆(Vehicle)类,数据成员有:weight(重量)、type(型号),方法成员有:行驶Run()、显示车辆信息
好的,以下是创建一个车辆(Vehicle)类的示例代码:
```
class Vehicle:
def __init__(self, weight, type):
self.weight = weight
self.type = type
def Run(self):
print("车辆正在行驶")
def Display(self):
print("车辆信息:")
print("重量:", self.weight)
print("型号:", self.type)
```
这个类有两个数据成员:weight(重量)和type(型号),以及两个方法成员:Run()(行驶)和Display()(显示车辆信息)。创建这个类时,需要传入车辆的重量和型号作为参数。通过调用Run()方法,可以让车辆开始行驶;而调用Display()方法,则会显示车辆的重量和型号信息。
用Java写一个创建一个车辆(Vehicle)类,数据成员有:weight(重量)、type(型号),方法成员有:行驶Run()、显示车辆信息
```
public class Vehicle {
private double weight;
private String type;
public Vehicle(double weight, String type) {
this.weight = weight;
this.type = type;
}
public void run() {
System.out.println("The vehicle is running");
}
public void displayInfo() {
System.out.println("Weight: " + weight + " Type: " + type);
}
}
```
使用方法:
```
Vehicle myVehicle = new Vehicle(1000, "SUV");
myVehicle.run();
myVehicle.displayInfo();
```
阅读全文