main() Can't See Private Data

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   go to next page

Answer:

Yes.

main() Can't See Private Data

The main() method changes the CheckingAccount object by using the object's access methods. Here is a different main() that does not use the access methods.

class CheckingAccount
{
  private String accountNumber;
  private String accountHolder;
  private int    balance;
  . . . .
}

class CheckingAccountTester
{
  public static void main( String[] args )
  {
    CheckingAccount bobsAccount = new CheckingAccount( "999", "Bob", 100 );

    System.out.println( bobsAccount.balance );
    bobsAccount.balance = bobsAccount.balance + 200;
    System.out.println( bobsAccount.balance );
 
  }
}

QUESTION 4:

Is there a problem with this program?