我有一個類,LogAnalyzer()
,我想更改構造函數,因此它可以採用類LogfileReader
的實例。這個實例將由LogAnalyzer
類進行分析。更改構造類,Java
下面是構造函數的代碼:
public LogAnalyzer()
{
// Create the array object to hold the hourly
// access counts.
hourCounts = new int[24];
// Create the reader to obtain the data.
reader = new LogfileReader();
}
這裏是LogAnalyzer
類的字段:
// Where to calculate the hourly access counts.
private int[] hourCounts;
// Use a LogfileReader to access the data.
private LogfileReader reader;
我應該怎麼辦?
提示:它要求您創建一個帶參數的構造函數。 –