public class Account { public String owner; // visible everywhere private double balance; // hidden from outside code public double getBalance() { return balance; // the class itself can read its private field } }
Click Run to execute this code.