
- Lesson: Language Basics
- Variables
- Expressions, Statements, and Blocks
- Control Flow Statements
- Lesson: Classes and Objects
- Classes
- Declaring Classes
- Declaring Member Variables
- Access Modifiers
- Types
- Variable Names
- Defining Methods
- Naming a Method
- Overloading Methods
- Providing Constructors for Your Classes
- Passing Information to a Method or a Constructor
- Parameter Types
- Arbitrary Number of Arguments
- Parameter Names
- Passing Primitive Data Type Arguments
- Passing Reference Data Type Arguments
- Objects
- Creating Objects
- Declaring a Variable to Refer to an Object
- Instantiating a Class
- Initializing an Object
- Using Objects
- Referencing an Object's Fields
- Calling an Object's Methods
- The Garbage Collector
- More on Classes
- Returning a Value from a Method
- Returning a Class or Interface
- Using the this Keyword
- Using this with a Field
- Using this with a Constructor
- Controlling Access to Members of a Class
- Understanding Instance and Class Members
- Class Variables
- Class Methods
- Constants
- The Bicycle Class
- Initializing Fields
- Static Initialization Blocks
- Initializing Instance Members
- Summary of Creating and Using Classes and Objects
- Questions and Exercises: Classes
- Questions and Exercises: Objects
- Nested Classes
- Enum Types
- Annotations
- Lesson: Interfaces and Inheritance
7.1.Questions and Exercises: Enum Types #
Questions and Exercises: Enum Types
Exercises
- Rewrite the class Card from the exercise in Questions and Exercises: Classes so that it represents the rank and suit of a card with enum types.
- Rewrite the Deck class.