gpt4 book ai didi

java - 比较另一个类JAVA中的日期和时间类

转载 作者:行者123 更新时间:2023-12-02 12:31:11 24 4
gpt4 key购买 nike

今年早些时候,我在大学接到了一份作业。任务是使用 OOP 程序创建一个 parking 场管理系统。例如,我们学习了如何使用继承、抽象类和实例。我已经完成并通过了这项作业,所以这个问题只是出于知识目的。其中一项任务是按时间顺序对 ArrayList 中的对象进行排序。为此,我们学会了可比较/比较器的方法。然而,我无法理解它,也无法做到。问题是,我们必须订购一个“DateTime”对象,该对象位于数组列表中的“Vehicle”对象中。我没有使用预定义的日期和时间库,因为它需要用户输入。谢谢。

所以首先是抽象 Vehicle 类。

 public abstract class Vehicle{

protected String vehicleID, brand;
protected DateTime datetime;
}

然后我将包含继承的车辆类之一。

public class Car extends Vehicle {

protected String colour;
protected int numOfDoors;

public Car(String brand, String vehicleID, int numOfDoors, String colour) {
this.vehicleID = vehicleID;
this.brand = brand;
this.numOfDoors = numOfDoors;
this.colour = colour;
}

public void setColour(String colour) {
this.colour = colour;
}

public void setvehicleID(String vehicleID) {
this.vehicleID = vehicleID;
}

public void setBrand(String brand) {
this.brand = brand;
}

public String getColour() {
return this.colour;
}

public String getVehicleID() {
return this.vehicleID;
}

public String getBrand() {
return this.brand;
}

public String toString() {

return "Car";

}

public int getNumOfDoors() {
return numOfDoors;
}

public void setNumOfDoors(int numOfDoors) {
this.numOfDoors = numOfDoors;
}

public DateTime getDatetime() {
return datetime;
}

public void setDatetime(DateTime datetime) {
this.datetime = datetime;
}


}

接下来是 dateTime 类,它不使用预定义库,而是输入到控制台中。

import java.util.Comparator;

public class DateTime implements Comparator<DateTime> {

protected int day, month, year, minutes, hours;

public DateTime() {

}

public DateTime(int minutes, int hours, int day, int month, int year) {
this.minutes = minutes;
this.hours = hours;
this.day = day;
this.month = month;
this.year = year;

}

@Override
public String toString() {
return day+"/"+month+"/"+year + " " + minutes+":"+hours;
}

public int getDay() {
return day;
}

public void setDay(int day) {
this.day = day;
}

public int getMonth() {
return month;
}

public void setMonth(int month) {
this.month = month;
}

public int getYear() {
return year;
}

public void setYear(int year) {
this.year = year;
}

public int getMinutes() {
return minutes;
}

public void setMinutes(int minutes) {
this.minutes = minutes;
}

public int getHours() {
return hours;
}

public void setHours(int hours) {
this.hours = hours;
}

@Override
public int compareTo(DateTime o) {
int returnValue = 0;
if (this.year > o.getYear())
returnValue = 1;
else
returnValue = -1;
return returnValue;

}

@Override
public int compare(DateTime o1, DateTime o2) {
return o1.year - o2.year;
}


}

正如你所看到的,我尝试使用比较器和比较器。

接下来是实例和主类

 public interface CarParkManager {

public abstract void addVehicle(Vehicle vehicle);

public abstract void printVehicleList();

public abstract void deleteVehicle();

public abstract boolean runMenu();
}

主要:

 import java.util.ArrayList;
import java.util.Collections;

import java.util.Scanner;

public class MyCarParkManager implements CarParkManager {

private ArrayList<Vehicle> vehicles;
private int numSpaces, doors, day, month, year, minutes, hour;
private String brand, vehicleID, colour, engineSize, cargoVolume;
Scanner in = new Scanner(System.in);

public MyCarParkManager(int vehicleList) {
vehicles = new ArrayList<Vehicle>();
this.numSpaces = vehicleList;

}

public void addVehicle(Vehicle vehicle) {
if (vehicles.size() < numSpaces) {

vehicles.add(vehicle);
numSpaces--;
System.out.println("Spaces left: " + numSpaces);
} else {
System.out.println("Not enough spaces.");
}

}

@Override
public void deleteVehicle() {
for (int i = 0; i < vehicles.size(); i++) {
System.out.println(vehicles.get(i).vehicleID);
}
System.out.println("Please enter vehicle ID you wish to delete");
String idDelete = in.next();
for (int i = 0; i < vehicles.size(); i++) {
if(vehicles.get(i).vehicleID.equals(idDelete)){
System.out.println("The " + vehicles.get(i).toString() + " was
deleted.");
vehicles.remove(i);


}
}

}

@Override
public void printVehicleList() {

for (int i = 0; i < vehicles.size(); i++) {
Collections.sort(vehicles, new DateTime());
}

}

@Override
public boolean runMenu() {
boolean exit = false;
System.out.println("Please enter desired function");
System.out.println("Enter 1 to add a vehicle");
System.out.println("Enter 2 to delete a parked vehicle");
System.out.println("Enter 3 to display already parked vehicles");

int choice = in.nextInt();
switch (choice) {
case 1:
System.out.println("Enter 1 to add a car");
System.out.println("Enter 2 to add a van");
System.out.println("Enter 3 to add a bike");
int choice2 = in.nextInt();
switch (choice2) {
case 1:
System.out.println("Please enter brand of car");
brand = in.next();
System.out.println("Please enter vehicleID");
vehicleID = in.next();
System.out.println("Please enter number of doors");
doors = in.nextInt();
System.out.println("Please enter colour of the car");
colour = in.next();
System.out.println("Please enter the minutes of parked
vehicle");
minutes = in.nextInt();
System.out.println("Please enter hour of parked
vehicle");
hour = in.nextInt();
System.out.println("Please enter day");
day = in.nextInt();
System.out.println("Please enter month");
month = in.nextInt();
System.out.println("Please enter year");
year = in.nextInt();
DateTime datetime = new DateTime(minutes, hour, day, month, year);
Car c = new Car(brand, vehicleID, doors, colour);
c.setDatetime(datetime);
addVehicle(c);
break;
case 2:
System.out.println("Please enter brand of car");
brand = in.next();
System.out.println("Please enter vehicleID");
vehicleID = in.next();
System.out.println("Please enter cargoVolume");
cargoVolume = in.next();
System.out.println("Please enter the minutes of parked
vehicle");
minutes = in.nextInt();
System.out.println("Please enter hour of parked
vehicle");
hour = in.nextInt();
System.out.println("Please enter day");
day = in.nextInt();
System.out.println("Please enter month");
month = in.nextInt();
System.out.println("Please enter year");
year = in.nextInt();
DateTime vanDateTime = new DateTime(minutes, hour, day, month, year);
Van v = new Van(brand, vehicleID, cargoVolume);
v.setDatetime(vanDateTime);
addVehicle(v);
break;
case 3:
System.out.println("Please enter brand of car");
brand = in.next();
System.out.println("Please enter vehicleID");
vehicleID = in.next();
System.out.println("Please enter engine size");
engineSize = in.next();
System.out.println("Please enter the minutes of parked vehicle");
minutes = in.nextInt();
System.out.println("Please enter hour of parked vehicle");
hour = in.nextInt();
System.out.println("Please enter day");
day = in.nextInt();
System.out.println("Please enter month");
month = in.nextInt();
System.out.println("Please enter year");
year = in.nextInt();
DateTime bikeDateTime = new DateTime(minutes, hour, day, month, year);
Bike b = new Bike(brand, vehicleID, engineSize);
b.setDatetime(bikeDateTime);
addVehicle(b);
break;

}
break;
case 2:
deleteVehicle();
break;
case 3:
printVehicleList();
break;

}

return exit;

}

public static void main(String[] args) {
CarParkManager carPark = new MyCarParkManager(20);
boolean exit = false;

while (!exit) {
exit = carPark.runMenu();
}
}

}

这是我尝试对数组列表进行排序的地方。我知道它不起作用,因为 Arraylist 是对象车辆的 Arraylist。我不明白如何使用可比较或比较器对对象进行排序。任何帮助都会被应用。

 public void printVehicleList() {

for (int i = 0; i < vehicles.size(); i++) {
Collections.sort(vehicles, new DateTime());
}

}

最佳答案

您想要比较车辆。因此,您需要一个 VehicleComparator,而不是 DateTime 比较器:

public class VehicleComparator implements Comparator<Vehicle> {
@Override
public int compare(Vehicle o1, Vehicle o2) {
// now get the two vehicle's dates and compare them
}
}

然后

Collections.sort(vehicles, new VehicleComparator());

更新:

此外,您不需要 ComparatorComparable

Comparator 是一个用于比较事物的独立类。您可以使用它来调用Collections.sort(vehicles, comparator)

或者您可以让事物本身实现Comparable(例如Vehicle实现Comparable)。然后他们可以有效地比较自己。如果某些东西实现了Comparable(这称为“自然排序”)。当这样做时,您可以调用Collections.sort(vehicles)。该版本的排序方法期望列表中的所有内容都实现Comparable,因此不需要独立的Comparator来完成这项工作。

您不需要两者都做。

关于java - 比较另一个类JAVA中的日期和时间类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45278316/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com