~/ learn/ java-from-zero/ cards/ Access modifiers & encapsulation
1 of 4

Type a private field with a public getter

Type a private field with a public getter

Answer

private double balance; public double getBalance() { return balance; }

Callers read balance through the getter but cannot write it directly. A setter can enforce business rules like "no negative deposit".

space flip · ← → navigate · esc to exit
NORMAL ~/memra/library/e17f6566-5fd0-4dc0-a6b0-8b23459362fb/flashcard utf-8 LF