4 Java data types

 

Exam objectives covered in this chapter

What you need to know

[3.1] Declare and initialize variables (including casting and promoting primitive data types)

Declaration and initialization of primitives and object reference variables.

Literal values for primitive variables. Automatic widening of data types.

[3.2] Identify the scope of variables

Variables can have multiple scopes: class, instance, method, and local.

Accessibility of a variable in a given scope.

[3.3] Use local variable type inference

Define local variables using reserved type var.

Do’s and don’ts of defining variables using var. Benefits and precautions.

Data types and variables are the building blocks of a programming language. The Java SE 11 Programmer I exam will question you on the various primitive data types in Java, how to create and initialize variables to store primitive values and objects, and similarities and differences between them. The exam will also question you on the various scopes in which a variable can be defined, whether multiple variables with the same name can be defined in a scope and what are the implications. It also covers how to use var to define your local variables.

This chapter covers the following:

  • Primitive data types in Java
  • Casting and promoting primitive data types
  • Reference variables
  • Define the scope of variables
  • Local Type variable inference with var

Let’s get started with Primitive data types.

4.1      Primitive data types

 
 

4.1.1   Data type - boolean

 
 
 

4.1.2   Numeric data types

 
 

4.1.3   Data type – char (unsigned integer)

 
 

4.2      Casting and promotion of primitive data types

 

4.2.1   What is casting

 

4.3      Object reference variables

 
 
 

4.3.1   What are object reference variables?

 

4.3.2   Comparing reference and primitive variables

 
 
 

4.4      Scope of variables

 
 
 

4.4.1   Local variables

 
 

4.4.2   Method parameters

 
 
 

4.4.3   Instance variables

 
 
 

4.4.4   Class variables

 
 
 

4.4.5   Overlapping variable scopes

 

4.5      Local variable type inference

 
 
 

4.5.1   What is type inference

 
 

4.5.2   Type inference with var

 
 

4.5.3   Is this a local variable?

 
 
 
 

4.5.4   Where you can and can’t use var

 
 
 
 

4.5.5   Rules – do’s and don’ts

 
 
 

4.5.6   Benefits of using var

 
 

4.6      Summary

 
 
 
 

4.6.1   Sample exam questions

 
 

4.7      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