class Account {
// Member variable "closed" is assigned the default value of
// "false" by the jvm when this class is initialized. Unless
// you change the value somewhere it will remain "false".
private boolean closed;
public boolean isClosed(boolean stat) {
System.out.printf("closed = %b%n", closed);
return closed;
}
}