談到Java時,我知道如何計算大多數事情,但是這要麼困擾了我很多,要麼我的大腦正在死亡。無論如何,我有一個名爲「Jobs」的類,在該類中是一個名爲「day」的String變量。已經創建了多個新作業(確切的編號是未知的),現在我需要查詢並瞭解每天有多少個作業。我認爲這會很容易,但我不知道如何創建一個從整體看待喬布斯而不是一個特定的喬布斯。Java:數據在一個類中出現次數的計數
作業數據是通過掃描器讀取文件(其名稱是jobFile)而創建的。
public class Job_16997761 {
private int jobID; // unique job identification number
private int customerID; // unique customer identification number
private String registration; // registration number for vehicle for this job
private String date; // when the job is carried out by mechanic
private String day; // day of the week that job is booked for
private double totalFee; // total price for the Job
private int[] serviceCode; // the service codes to be carried out on the vehicle for the job
//Constructor
public Job_16997761(int jobID, int customerID, String registration,
String date, String day, double totalFee, int[] serviceCode) {
this.jobID = jobID;
this.customerID = customerID;
this.registration = registration;
this.date = date;
this.day = day;
this.totalFee = totalFee;
this.serviceCode = serviceCode;
}
嘗試發佈一些代碼,如「Jobs」類。此外,如何創建'Jobs',並在應用程序中存在哪些位置(例如:誰知道它們存在)? – 2014-10-22 07:10:22
如果你想得到準確的答案,我建議你發佈一些代碼。 – ortis 2014-10-22 07:10:23
你有沒有類似'List'的地方,所有'Job'都被引用? – Steffen 2014-10-22 07:15:05