3 Describing objects and classes

 

Exam objectives covered in this chapter

What you need to know

[6.2] Define the structure of a Java class

Structure of a Java class, with its components: package and import statements, class declarations, comments, variables, and methods.

Difference between the components of a Java class and that of a Java source code file.

[6.1] Declare and instantiate Java objects, and explain objects' lifecycles (including creation, dereferencing by reassignment, and garbage collection)

Understanding the differences between variable declaration and initialization, instance creation and its accessibility.

Garbage collection in Java. Determining when instances are eligible to be garbage collected.

[6.3] Read or write to object fields.

Object fields can be read from and written to by directly accessing instance variables and calling methods.

The correct notation to call methods on an object.

Methods may or may not change the value of instance variables.

Access modifiers affect access to instance variables and methods that can be called using a reference variable.

Non-static methods can’t be called on uninitialized reference variables.

3.1      The structure of a Java class and a source code file

 

3.1.1   Structure of a Java class

 
 
 
 

3.2      Object’s lifecycle

 
 
 
 

3.2.1   An object is born

 
 

3.2.2   Object is accessible

 
 

3.2.3   Object is inaccessible

 
 
 

3.2.4   Garbage collection

 
 
 
 

3.3      Read or write to object fields

 
 

3.3.1   What is an object field?

 
 

3.3.2   Read and write object fields

 
 
 

3.3.3   Calling methods on objects

 
 
 

3.4      Summary

 

3.5      Sample exam questions

 
 
 

3.6      Answers to sample exam questions

 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage