Java作业 定义类,设置属性和方法,并进行调用 (1)定义一个车类,定义其品牌、颜色、价格、现?
发布网友
发布时间:2023-06-23 10:38
我来回答
共1个回答
热心网友
时间:2023-10-08 19:26
以下是一个 Java 类,用于定义车辆:
public class Car {
private String brand;
private String color;
private double price;
private int speed;
public Car(String brand, String color, double price, int speed) {
this.brand = brand;
this.color = color;
this.price = price;
this.speed = speed;
}
public void setBrand(String brand) {
this.brand = brand;
}
public void setColor(String color) {
this.color = color;
}
public void setPrice(double price) {
this.price = price;
}
public void setSpeed(int speed) {
this.speed = speed;
}
public void printInfo() {
System.out.println("Brand: " + brand);
System.out.println("Color: " + color);
System.out.println("Price: " + price);
System.out.println("Speed: " + speed);
}
}
public class Main {
public static void main(String[] args) {
Car car = new Car("Toyota", "Red", 2000000, 100);
car.printInfo(); // Output: Brand: Toyota Color: Red Price: 2000000 Speed: 100
}
}
在上面的代码中,我们定义了一个名为 Car 的类,它有四个属性:brand、color、price和speed,以及一个成员方法 printInfo()。该类还包含一个构造函数,用于初始化这些属性。在 main()方法中,我们创建了一个 Car对象 car,并调用了其 printInfo() 方法来打印出车的品牌、颜色、价格和速度。