
- 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
5.22.Using Objects #
Once you’ve created an object, you probably want to use it for something. You may need to use the value of one of its fields, change one of its fields, or call one of its methods to perform an action.