以下は、クラスの練習として行った Java コードです。SavingsAccount という名前のクラスがあります。残高変数と金利変数があります。ただし、それらを公開に設定しましたが、アカウントを個別に扱いたい場合は、それらを非公開にして、それらの変数の「取得/設定」メソッドを使用する必要がありますか? 変数をパブリックにすることでうまくいくことはできませんか?残りのコードには、これらの変数を使用して計算するメソッドがあります。
public class SavingsAccount { //This class has three different variables that define it
public double balance; //Double for account balance
public static double annualInterestRate; //Class method for interest rate
public final int ACCOUNT_NUMBER; //Constant int for keeping track of accounts
public SavingsAccount (int ACCOUNT_NUMBER, double balance) { //Constructor that takes down account number and balance to keep track of
this.ACCOUNT_NUMBER = ACCOUNT_NUMBER;
this.balance = balance;
}