Week 2 Java
Week 2 Java
int num1 = 19
VARIABLE INITIALIZATION
To initialize a variable, you must assign it a
valid value.
TYPES OF
VARIABLES
LOCAL VARIABLE
A variable declared inside the body of the method is
called local variable. You can use this variable only
within that method and the other methods in the class
aren't even aware that the variable exists.A local
variable cannot be defined with "static" keyword.
INSTANCE VARIABLE
A variable declared inside the class but outside the
body of the method, is called instance variable. It is not
declared as static.It is called instance variable because
its value is instance specific and is not shared among
instances.
STATIC VARIABLE
A variable which is declared as static is called static
variable. It cannot be local. You can create a single
copy of static variable and share among all the
instances of the class. Memory allocation for static
variable happens only once when the class is loaded in
the memory.
JAVA DATA
TYPES
Data Types in Java are defined as
specifiers that allocate different sizes
and types of values that can be stored
in the variable or an identifier. Java
has a rich set of data types. Data
types in Java can be divided into two
parts :
1. Primitive Data Types :- which include
integer, character, boolean, and float
2. Non-primitive Data Types :- which
include classes, arrays and
interfaces.