Unit 1 Notes Java Programming
Unit 1 Notes Java Programming
UNIT I
Object-Oriented Programming
Object-oriented programming (OOP) is a programming paradigm based on the concept of
“objects”, which may contain data, in the form of fields, often known as attributes; and code, in the
form of procedures, often known as methods.
Object means a real word entity such as pen, chair, table etc. Object-Oriented Programming is a
methodology or paradigm to design a program using classes and objects. It simplifies the software
development and maintenance by providing some concepts:
● Object
● Classes
● Inheritance
● Polymorphism
● Abstraction
● Encapsulation
Objects And Classes
Object Objects have states and behaviours. Example: A dog has states - colour, name, breed
as well as behaviours – wagging the tail, barking, eating. An object is an instance of a class.
Class
A class can be defined as a template/blueprint that describes the behaviour/state that the
object of its type support.
Objects in Java
An entity that has state and behavior is known as an object e.g., chair, bike, marker, pen, table,
car, etc. It can be physical or logical (tangible and intangible). The example of an intangible object is
the banking system.
An object is an instance of a class. A class is a template or blueprint from which objects are created.
So, an object is the instance(result) of a class.
Object Definitions:
Classes in Java
A class is a group of objects which have common properties. It is a template or blueprint from which
objects are created. It is a logical entity. It can't be physical.
● Fields
● Methods
● Constructors
● Blocks
● Nested class and interface
1. Single Inheritance
2. Multilevel Inheritance
3. Hierarchical Inheritance
4. Multiple Inheritance
5. Hybrid Inheritance
Polymorphism
Polymorphism (from Greek, meaning “many forms”) is a feature that allows one interface to
be used for a general class of actions. The specific action is determined by the exact nature of the
situation.
Platform independent: Unlike many other programming languages including C and C++, when Java
is compiled, it is not compiled into platform specific machine, rather into platform independent byte
code. This byte code is distributed over the web and interpreted by virtual Machine (JVM) on
whichever platform it is being run.
Features of JAVA
The primary objective of Java programming language creation was to make it portable, simple
and secure programming language. Apart from this, there are also some excellent features which play
an important role in the popularity of this language. The features of Java are also known as Java
buzzwords.
A list of the most important features of the Java language is given below.
● Simple
● Object-Oriented
● Portable
● Platform independent
● Secured
● Robust
● Architecture neutral
● Interpreted
● High Performance
● Multithreaded
● Distributed
● Dynamic
Simple
Java is very easy to learn, and its syntax is simple, clean and easy to understand. According to
Sun Microsystem, Java language is a simple programming language because:
Java syntax is based on C++ (so easier for programmers to learn it after C++).
Object-Oriented
Java is portable because it facilitates you to carry the Java bytecode to any platform. It doesn't
require any implementation.
Secure
Java program cannot harm other system thus making in secure. Java provides a secure means
of creating Internet application.
Robust
Java makes an effort to eliminate error prone situations by emphasizing mainly on compile
time error checking and runtime checking.
Architecture-neutral
Java is architecture neutral because there are no implementation dependent features, for
example, the size of primitive types is fixed.
In C programming, int data type occupies 2 bytes of memory for 32-bit architecture and 4
bytes of memory for 64-bit architecture. However, it occupies 4 bytes of memory for both 32 and
64-bit architectures in Java.
Interpreted
Java byte code is translated on the fly to native machine instructions and is not stored
anywhere. The development process is more rapid and analytical since the linking is an incremental
and lightweight process.
High Performance
With the use of Just-In-Time compilers, Java enables high performance. Java is faster than
other traditional interpreted programming languages because Java bytecode is "close" to native code.
It is still a little bit slower than a compiled language (e.g., C++). Java is an interpreted
language that is why it is slower than compiled languages, e.g., C, C++, etc.
Multithreaded
With Java's multithreaded feature, it is possible to write programs that can do many tasks
simultaneously. This design feature allows developers to construct smoothly running interactive
applications.
Distributed:
Dynamic
Java is a dynamic language. It supports the dynamic loading of classes. It means classes are
loaded on demand. It also supports functions from its native languages, i.e., C and C++.
Java supports dynamic compilation and automatic memory management (garbage collection).
Basic of Java Programming using Class
class Student{
//defining fields
int id; //field or data member or instance variable
String name;
//creating main method inside the Student class
public static void main(String args[]){
//Creating an object or instance
Student s1=new Student(); //creating an object of Student
//Printing values of the object
System.out.println(s1.id); //accessing member through reference variable
System.out.println(s1.name);
}
}
Constructor
Every class has a constructor. If the constructor is not defined in the class, the Java compiler
builds a default constructor for that class. While a new object is created, at least one constructor will
be invoked. The main rule of constructors is that they should have the same name as the class. A class
can have more than one constructor.
Constructors are used for initializing new objects. Fields are variables that provide the state of
the class and its objects, and methods are used to implement the behaviour of the class and its objects.
Rules for writing Constructor
• Constructor(s) of a class must have same name as the class name in which it resides.
• A constructor in Java cannot be abstract, final, static and synchronized.
• Access modifiers can be used in constructor declaration to control its access i.e which other class
can call the constructor
Following is an example of a constructor − Example
public class myclass
{
public myclass()
{
// Constructor
}
public myclass(String name)
{ // This constructor has one parameter, name.
}
}
Types of Constructors
There are two type of constructor in Java:
1. No-argument constructor: A constructor that has no parameter is known as default
constructor. If the constructor is not defined in a class, then compiler creates default
constructor (with no arguments) for the class.
If we write a constructor with arguments or no-argument then compiler does not
create default constructor. Default constructor provides the default values to the object like 0,
null etc. depending on the type.
// Java Program to illustrate calling a no-argument constructor
import java.io.*;
class myclass
{
int num;
String name;
// this would be invoked while object of that class created.
myclass()
{
System.out.println(“Constructor called”);
}
}
class myclassmain
{
public static void main (String[] args)
{ // this would invoke default constructor.
myclass m1 = new myclass(); // Default constructor provides the default values to the
object like 0, null
System.out.println(m1.num);
System.out.println(m1.name);
}
}
2. Parameterized Constructor
A constructor that has parameters is known as parameterized constructor. If we want
to initialize fields of the class with your own values, then use parameterized constructor.
// Java Program to illustrate calling of parameterized constructor.
import java.io.*;
class myclass
{ // data members of the class.
String name;
int num;
// contructor with arguments.
myclass(String name, int n)
{
this.name = name;
this.num = n;
}
}
class myclassmain
{
public static void main (String[] args)
{ // this would invoke parameterized constructor.
Methods in Java
A method is a collection of statement that performs specific task. In Java, each method is a
part of a class and they define the behaviour of that class. In Java, method is a jargon used for method.
Advantages of methods
● Program development and debugging are easier
● Increases code sharing and code reusability
● Increases program readability
● It makes program modular and easy to understanding
● It shortens the program length by reducing code redundancy
Types of methods
There are two types of methods in Java programming:
● Standard library methods (built-in methods or predefined methods)
● User defined methods
Packages Library Methods Descriptions
Example:
Program to compute square root of a given number using built-in method.
public class MathEx
{
public static void main(String[] args)
Example:
class DefaultEx{
int y=10;// default data
Sample Output:
10
In the above example, the scope of class DefaultEx and its data y is default. So it can be
accessible within the same package and cannot be accessed from outside the package.
Protected methods and fields are accessible within same class, subclass inside same pack
age and subclass in other package (through inheritance). It cannot be applicable to class and
interfaces.
Example:
Role of protected specifier
class Base{
protected void show(){
Example:
Role of public specifier
class PublicEx{
public int no=10;
}
public class Main{
public static void main(String[] args) {
PublicEx obj=new PublicEx();
System.out.println(obj.no);
}
}
Sample Output:
10
In this example, public data no is accessible both by member and non-member of the class.
Static Member
In Java, static members are those which belongs to the class and you can access these
members without instantiating the class.
The static keyword can be used with methods, fields, classes (inner/nested), blocks. The static
keyword can be used with:
Static Methods
You can create a static method by using the keyword static. Static methods can access only static
fields, methods. To access static methods there is no need to instantiate the class, you can do it just
using the class name as
public class MyClass {
public static void sample(){
boolean 1 bit
false
byte 0 1 byte
short 0 2 byte
int 0 4 byte
long 0L 8 byte
The float data type is a single-precision 32-bit IEEE 754 floating point.Its value range is
unlimited. It is recommended to use a float (instead of double) if you need to save memory in large
arrays of floating point numbers.
The float data type should never be used for precise values, such as currency. Its default
value is 0.0F.
Example
float f1 = 234.5f
The double data type is a double-precision 64-bit IEEE 754 floating point. Its value range
is unlimited. The double data type is generally used for decimal values just like float. The double
data type also should never be used for precise values, such as currency. Its default value is 0.0d.
Example
double d1 = 12.3
The char data type is a single 16-bit Unicode character. Its value-range lies between '\u0000' (or 0)
to '\uffff' (or 65,535 inclusive).The char data type is used to store characters.
Example:
Variables
A variable is the holder that can hold the value while the java program is executed. A
variable is assigned with a datatype. It is the name of a reserved area allocated in memory. In other
words, it is the name of a memory location. There are three types of variables in java: local,
instance and static.
A variable provides us with named storage that our programs can manipulate. Each
variable in Java has a specific type, which determines the size and layout of the variable’s memory;
the range of values that can be stored within that memory; and the set of operations that can be
applied to the variable.
Before using any variable, it must be declared. The following statement expresses the basic
form of a variable declaration
Syntax
Example
● local variable
● instance variable
● static variable
Local variable
Instance Variable
A variable declared inside the class but outside the body of the method, is called an
instance variable. It is not declared as static.
It is called an instance variable because its value is instance-specific and is not shared
among instances.
Static variable
A variable that is declared as static is called a static variable. It cannot be local. You can
create a single copy of the static variable and share it among all the instances of the class. Memory
allocation for static variables happens only once when the class is loaded in the memory.
public class A
void method()
Operators
Operator in java is a symbol that is used to perform operations. Java provides a rich set
of operators to manipulate variables.For example: +, -, *, / etc.
● Arithmetic operators
● Assignment operators
● Comparison operators
● Logical operators
● Bitwise operators
● Unary Operator
● Ternary Operator
Arithmetic Operators
In the example below, we use the assignment operator (=) to assign the value 10 to a variable called
x:
Example:
int X=10;
Comparison operators are used to compare two values (or variables). This is important in
programming, because it helps us to find answers and make decisions.
The return value of a comparison is either true or false. These values are known as Boolean
values, and you will learn more about them in the Booleans and If..Else chapter.
In the following example, we use the greater than operator (>) to find out if 5 is greater than 3:
You can also test for true or false values with logical operators.
Logical operators are used to determine the logic between variables or values:
Bitwise Operators
In Java, an operator is a symbol that performs the specified operations. In this section, we
will discuss only the bitwise operator and its types with proper examples.
Unary Operator
In Java, unary arithmetic operators are used to increasing or decreasing the value of an
operand. Increment operator adds 1 to the value of a variable, whereas the decrement operator
decreases a value.
Ternary Operators
There is also a short-hand if else, which is known as the ternary operator because it consists
of three operands.
It can be used to replace multiple lines of code with a single line, and is most often used to
replace simple if else statements:
Syntax
Example
System.out.println(result);