Lecture 15
14
toString in class Boolean
•Wrapper class for primitive type boolean
•From file Boolean.java in library:
•private boolean value; // field
•
•public String toString() {
•   return value ? "true" : "false";
•}
•Sun’s brace convention differs from ours
•test ? x : y   expression on next slide