Java Programming: Prepared By: Ms. Aileen Rose S. Nadela-Cruz
Java Programming: Prepared By: Ms. Aileen Rose S. Nadela-Cruz
class Hello
{
public static void main(String[] args)
{
System.out.println ("Hello World program");
}
}
Simple Program: Hello World
• class : class keyword is used to declare classes in
Java
• public : It is an access specifier. Public means this
function is visible to all. Access Specifiers are also
known as Visibility Specifiers, regulate access to
classes, fields and methods in Java. These specifiers
determine whether a field or method in a class, can
be used or invoked by another method in another
class or sub-class. Access Specifiers can be used to
restrict access.
Simple Program: Hello World
Instance Variables
• Instance variables are variables that are declare
inside a class but outside any method, constructor
or block.
Variables in Java (CONT.)
Static Variables
• Class variables also known as static variables are
declared with the static keyword in a class, but
outside a method, constructor or a block.
• Static variables are initialized only once at the start
of the execution . These variables will be initialized
first, before the initialization of any instance
variables
• A single copy to be shared by all instances of the
class
Variables in Java (CONT.)
Local Variables
• Local variables are declared in method constructor
or blocks. Local variables are initialized when
method or constructor block start and will be
destroyed once its end.
Concept of Array in Java
• An array is a collection of similar data types.
• Array is a container object that hold values of
homogenous type.
• It is also known as static data structure because size
of an array must be specified at the time of its
declaration.
• An array can be either primitive or reference type. It
gets memory in heap area. Index of array starts
from zero to size-1.
Concept of Array in Java (CONT.)
Array Declaration
datatype[] identifier;
or
datatype identifier[];
Initialization of Array
new operator is used to initialize an array.
Access Level and Modifiers in Java