我正在爲我的計算機科學類做一個任務,但是我陷入了這一部分。我應該編寫給定的主要方法和實例變量的構造函數。構造函數需要有一個ArrayList和一個Array作爲參數,但我不完全確定如何。ArrayList和Array作爲構造函數的參數
的指導和主要方法如下:
使用提供完成構造
import java.util.ArrayList;
class RectangleStats
{
//instance variables go here
//The constructor for the RectangleStats class takes an ArrayList and an array as parameters for
// width and length, respectively.
// code for constructor goes here
// The RectangleStatsTesterClass assigns the width of two rectangles to an ArrayList and assigns the
// length of two rectangles to an array. The calcRectangleArea() and printArea() methods are invoked to
// calculate and print the area of the two rectangles.
public class RectangleStatsTesterClass
{
public static void main(String[] args)
{
ArrayList dblWidth = new ArrayList();
dblWidth.add(5.2);
dblWidth.add(9.3);
double [ ] dblLength = {11.1, 4.7};
RectangleStats rectStats = new RectangleStats(dblWidth, dblLength);
rectStats.calcRectangleArea();
rectStats.printArea();
}
}
我目前擁有的構造函數的註釋和代碼是這樣的: 公共RectangleStats (雙w,雙l) 寬度= w; length = 1; area = 0; }
但我不知道如果它的權利或不..幫助?
你的構造函數在哪裏? – Kakarot
這就是我要弄清楚..我寫下了我認爲的構造應該是,但即時通訊不太確定.. – user3164890