只需創建一個新的實例你沒有入口點到您的程序,這看起來應該像這樣在你的類
public static void main(String[] args)
{
//objects created here
}
您還會創建一個Customer
對象作爲您的Customer
類的成員,這意味着每個對象都包含另一個對象。
你不能設置Customer
成員這樣
Customer customer = new Customer(); //you also don't have a no argument constructor
customer = 1; //how would it know where to put this 1?
customer = cust1; //same as above
它會是這樣(如果他們在正確的地方,如上面提到的)
Customer customer = new Customer(); //if using this method you will need a no argument constructor
customer.id = 1;
customer.name = cust1;
或類似這樣的
new Customer(1,"cust1");
總結
- 你需要一個切入點
- 你有沒有參數的構造函數創建
Customer
但你只有它有兩個參數一個構造
- 您是 - 對於一些reason-每
Customer
內創建
Customer
- 你沒有設置你的
Customer
對象的成員在正確的(甚至是在一個有效的)方式
那麼,有什麼問題呢? –