The compiler shows an error at new Stock[2]; after ;{ expect.
public class TestStockUI {
Stock[] stock = new Stock[2];
stock[0] = new Stock("Microsoft", "MSFT", 15.69);
stock[1] = new Stock("Google", "GOGL", 323.98);
public TestStockUI() { }
}
Then I have changed it like below resulting in the same error.
public class TestStockUI {
Stock[] stock = new Stock[2];
stock[0] = new Stock("Microsoft", "MSFT", 15.69);
stock[1] = new Stock("Google", "GOGL", 323.98);
}
This solve the problem but I don't know why.
public class TestStockUI {
Stock[] stock = new Stock[2];
{
stock[0]=new Stock("Microsoft","MSFT",15.69);
stock[1]=new Stock("Google","GOGL",323.98);
}
}