Hey sorry for the bad formatting. I am in a java class and don't know how to pass the bank account data into one show value method if someone could help that would be great!what i am not understanding is how to call the same method but pass different bank accounts into it.I thought i could just call showData(a); but this was not working. Please help!!
`/**
* Write a description of class TestBankAccount here.
*
* @author (your name)
* @version (a version number or a date)
*/
import java.util.Scanner;
public class TestBankAccount
{
public static void main(String[] args)
{
int AccountNumber;
String name;
double balance;
double NewBalance;
bankAccount newAccount = new bankAccount();
newAccount = getData(newAccount);
bankAccount newAccount2 = new bankAccount();
newAccount2 = getData(newAccount);
bankAccount newAccount3 = new bankAccount();
newAccount3 = getData(newAccount);
bankAccount newAccount4 = new bankAccount();
}
public static bankAccount getData(bankAccount s)
{
int AccountNum;
String ownerName;
double AccountBalance;
Scanner stan = new Scanner(System.in);
System.out.print("Enter Account Number ");
AccountNum = stan.nextInt();
stan.nextLine();
System.out.print("Enter owner name ");
ownerName = stan.nextLine();
System.out.println("Enter Account Balance: ");
AccountBalance = stan.nextDouble();
s.setAccountNumber(AccountNum);
s.setName(ownerName);
s.setBalance(AccountBalance);
s.setNewBalance(AccountBalance);
return s;
}
public static void showData(bankAccount a)
{
System.out.println("The account number is: ");
System.out.println(a.getAccountNumber());
System.out.println("The owner name is: ");
System.out.println(a.getName());
System.out.println("The balance is: ");
System.out.println(a.getNewBalance());
System.out.println(a.explanation());
}
}`
Your problem is
You are passing the same bank account always. In you method you set everything to that account. hence it is a problem.
Either change this to
Or change you method to not take in a parameter.
Like this:
Then change your main code to :