I seem to get the message ")" Expected error when I try to compile a program
I am not sure what the problem is, as it is not) missing from the code section that indicates is incorrect. Below is the code
public void openBankAccount (String firstName, String lastName, String addr1,
String addr2, String addr3,
String postcode, double openingBalance)
{
this.account = new BankAccount(String firstName, String lastName,
String addr1, String addr2, String addr3,
String postcode, double openingBalance);
}
Chris source
share