Programming in Java
Programming in Java
B.Sc. V Semester
2023-2024
• In fact, you can directly start learning Java without any prior knowledge of
programming language.
• In short, if you know C or C++ it will be a little bit easier to cope with Java
technology.
Unit-I: BASIC CONCEPTS
object-oriented
Distributed
High Performance
Objects can communicate without knowing the details of each other's data or code.
The only necessary thing is the type of message accepted and the type of response returned by the objects.
Example: A dog is an object because it has states like color, name, breed, etc. as well as behaviors like
wagging the tail, barking, eating, etc.
A class can also be defined as a blueprint from which you can create an individual object. Class doesn't
consume any space.
o1. fieldname;
o1.methodName();
Understanding the concept of Java Classes and Objects with another
example.
• Some Common behaviors of these dogs like eat,sleep,sit and run etc . So these will be
the Common actions of our software objects.
• Class - Dogs
• Data members - size,age,color,breed etc
• Methods - eat,sleep,sit and run
DOG
class
Breed
Size
Age
Color
Data Members
Eat()
Sleep()
Sit()
Run() methods
Now, for different values of data members (Breed,Size, Age and Color) in
Java class, you will get different Dog objects.
// Class Declaration
public class Dog
{
// Instance Variables
String breed;
String size;
int age;
String color;
// method 1
public String getInfo()
{
return ("Breed is: "+breed+" Size is:"+size+" Age is:"+age+" color is: "+color);
}
public static void main(String[] args)
{
Dog maltese = new Dog();
maltese.breed="Maltese";
maltese.size="Small";
maltese.age=2;
maltese.color="white";
System.out.println(maltese.getInfo());
}
}
Output:
Breed is: Maltese Size is:Small Age is:2 color is: white
Unit-II: Method Declaration, Inheritance and Packages
Method Signature: Every method has a method signature. It is a part of the method declaration. It includes the method name and
parameter list.
Access Specifier: Access specifier or modifier is the access type of the method. It specifies the visibility of the method. Java
provides four types of access specifier:
Public: The method is accessible by all classes when we use public specifier in our application.
Private: When we use a private access specifier, the method is accessible only in the classes in which it is defined.
Protected: When we use protected access specifier, the method is accessible within the same package or subclasses in a different
package.
Default: When we do not use any access specifier in the method declaration, Java uses default access specifier by default. It is
visible only from the same package only.
Return Type: Return type is a data type that the method returns. It may have a primitive data type, object, void, etc. If the method
does not return anything, we use void keyword.
Method Name: It is a unique name that is used to define the name of a method.
It must be corresponding to the functionality of the method. Suppose, if we are
creating a method for subtraction of two numbers, the method name must be
subtraction(). A method is invoked by its name.
Method Body: It is a part of the method declaration. It contains all the actions to
be performed. It is enclosed within the pair of curly braces.
Method Overloading in Java
•Method Overloading allows different methods to have the same name, but different
signatures where the signature can differ by the number of input parameters or type of input
parameters, or a mixture of both.
• In Method overloading compared to parent argument, child argument will get the highest
priority.
Example
when an instance of the class is created. At the time of calling the constructor,
memory for the object is allocated in the memory.
Every time an object is created using the new keyword, at least one constructor
is called.
Example :
abc() //Default Constructor
abc(String name,int id) //Parametized Constructor
abc(Geek obj2) // copy constructor – It is passed with another object
Inheritance : Inheritance in Java is a mechanism in which one object acquires all
the properties and behaviors of a parent object.
Sub Class/Child Class: Subclass is a class which inherits the other class. It is also
called a derived class, extended class, or child class.
Super Class/Parent Class: Superclass is the class from where a subclass inherits
the features. It is also called a base class or a parent class.
Reusability: As the name specifies, reusability is a mechanism which facilitates you
to reuse the fields and methods of the existing class when you create a new class.
You can use the same fields and methods already defined in the previous class.
The extends keyword indicates that you are making a new class that derives from
an existing class. The meaning of "extends" is to increase the functionality.
Types of Inheritance
1.Single Inheritance
2.Multilevel Inheritance
3.Hierarchical Inheritance
4.Multiple Inheritance
5.Hybrid Inheritance
1.Single Inheritance
In single inheritance, subclasses inherit the features of one superclass. In the image below, class A
serves as a base class for the derived class B.
2.Multilevel Inheritance
In Multilevel Inheritance, a derived class will be inheriting a base class, and as well as the derived class
also acts as the base class for other classes. In the below image, class A serves as a base class for the
derived class B, which in turn serves as a base class for the derived class C. In Java, a class cannot
directly access the grandparent’s members.
3.Hierarchical Inheritance
In Hierarchical Inheritance, one class serves as a superclass (base class) for more than one
subclass. In the below image, class A serves as a base class for the derived classes B, C, and D.
4. Multiple Inheritance (Through Interfaces)
In Multiple inheritances, one class can have more than one superclass and inherit
features from all parent classes. Please note that Java does not support
multiple inheritances with classes. In Java, we can achieve multiple inheritances
only through Interfaces. In the image below, Class C is derived from interfaces A and
B.
5. Hybrid Inheritance(Through Interfaces)
It is a mix of two or more of the above types of inheritance. Since Java doesn’t
support multiple inheritances with classes, hybrid inheritance is also not possible
with classes. In Java, we can achieve hybrid inheritance only through Interfaces.
Abstraction in Java
Another way, it shows only essential things to the user and hides the internal
details, for example, sending SMS where you type the text and send the message.
You don't know the internal processing about the message delivery.
1. Abstract class
2. Interface
Abstract class : A class which is declared with the abstract keyword is known as an
abstract class in java. It can have abstract and non-abstract methods (method with
the body). It needs to be extended and its method implemented. It cannot be
instantiated.
Example : abstract class Bank{
abstract int getRateOfInterest();
}
class SBI extends Bank{
int getRateOfInterest() {return 7;}
}
class PNB extends Bank{
int getRateOfInterest() {return 8;}
}
class TestBank{
public static void main(String args[]) {
‘ Bank b=new SBI();
1. statement 1;
2. statement 2;
3. statement 3;
4. statement 4;
5. statement 5;//exception occurs
6. statement 6;
7. statement 7;
8. statement 8;
9. statement 9;
10. statement 10;
• Suppose there are 10 statements in a Java program and an exception occurs at statement
5; the rest of the code will not be executed, i.e., statements 6 to 10 will not be executed.
However, when we perform exception handling, the rest of the statements will be
executed. That is why we use exception handling in Java.
Types of Java Exceptions
• There are mainly two types of exceptions: checked and unchecked. An error is
considered as the unchecked exception. However, according to Oracle, there are
three types of exceptions namely:
1. Checked Exception
2. Unchecked Exception
3. Error
1) Checked Exception
The classes that directly inherit the Throwable class except RuntimeException and
Error are known as checked exceptions. For example, IOException, SQLException, etc.
Checked exceptions are checked at compile-time.
2) Unchecked Exception
The classes that inherit the RuntimeException are known as unchecked exceptions. For
example, ArithmeticException, NullPointerException, ArrayIndexOutOfBoundsException,
etc. Unchecked exceptions are not checked at compile-time, but they are checked at
runtime.
3) Error
Error is irrecoverable. Some example of errors are OutOfMemoryError,
VirtualMachineError,
AssertionError etc.
Exception Handling Techniques
}
Here, we have placed the code that might generate an exception
inside the try block. Every try block is followed by a catch block.
When an exception occurs, it is caught by the catch block.
The catch block cannot be used without the try block.
2. Java finally block
In Java, the finally block is always executed no matter whether there is an exception or
not.
The finally block is optional. And, for each try block, there can be only one finally block.
Syntax :
try
{
//code
}
catch(ExceptionType1 e1)
{
//catch block
}
finally {
// finally block always executes
}
If an exception occurs, the finally block is executed after the try… catch block .
Otherwise, it is executed after the try block. For each try block, there can be
Only one finally block.
3.3. The
Javajava Throw
throw keyword
keyword
The Java throw keyword is used to explicitly throw a single exception.
When we throw an exception, the flow of the program moves from the try block to
the catch block.
class Main {
public static void divideByZero()
{
// throw an exception
throw new ArithmeticException(“Trying to divide by 0”);
}
public static void main(String[] args) {
divideByZero();
}
}
In the above example, we are explicitly throwing the ArithmeticException
using the throw keyword.
4.The throws keyword is used to declare the type of exceptions that
Throws keyword
might occur within
the method. It is used in the method declaration.
Example :
class Main {
//declaring the type of exception
public static void findFile() throws IOException {
// code that may generate IOException
File newFile = new File(“test.txt”);
FileInputStream stream = new FileInputStream(newFile);
}
public static void main(String[] args) {
try {
findFile();
}
catch(IOException e) {
System.out.println(e);
}
}
}
• In Java, a thread always exists in any one of the following states. These states are:
• New
• Active
• Blocked / Waiting
• Timed Waiting
• Terminated
• Active: When a thread invokes the start() method, it moves from the new state to the
active state.
i) Runnable: A thread, that is ready to run is then moved to the runnable state.
Ii) Running: When the thread gets the CPU, it moves from the runnable to the
running state.
• Blocked/Waiting: Blocked or Waiting: Whenever a thread is inactive for a span of
time (not permanently) then, either the thread is in the blocked state or is in the
waiting state.
• Timed Waiting: Sometimes, waiting for leads to starvation. For example, a thread (its
name is A) has entered the critical section of a code and is not willing to leave that
critical section. In such a scenario, another thread (its name is B) has to wait forever,
which leads to starvation. To avoid such scenario, a timed waiting state is given to
thread B. Thus, thread lies in the waiting state for a specific span of time, and not
forever. A real example of timed waiting is when we invoke the sleep() method
on specific thread.
• Terminated: A thread reaches the termination state because of the following reasons:
i) When a thread has finished its job, then it exits or terminates normally.
ii) Abnormal termination: It occurs when some unusual events such as an
unhandled exception or segmentation fault.
create a thread in Java
Example :
class Multi3 implements Runnable
{
public void run(){
System.out.println("thread is running...");
}
• Java Synchronization is better option where we want to allow only one thread to
access the shared resource.
Types of Synchronization
• Thread synchronization:- It refers to the concept where only one thread is executed
at a time while other threads are in the waiting state. This process is called thread
synchronization. It is used because it avoids interference of thread and the problem of
inconsistency. In java, thread synchronization is further divided into two types:
i) Mutual exclusive- it will keep the threads from interfering with each other while
sharing any resources.
• Java uses the concept of a stream to make I/O operation fast. The java.io package
contains all the classes required for input and output operations.
• We can perform file handling in Java by Java I/O API.
Let's see the code to print output and an error message to the console.
• System.out.println("simple message");
• System.err.println("error message");
OutputStream and InputStream
• OutputStream
Output streams are used to write the data to various output devices like monitor, file,
network, etc.
• InputStream
Input streams are used to read the data from various input devices like keyboard, file,
network, etc.
I/O Streams
• Java I/O stream is the flow of data that you can either read from, or you can write to.
It is used to perform read and write operations in file permanently. Java uses streams
to perform these tasks. Java I/O stream is also called File Handling, or File I/O. It is
•
FileOutputStream is meant for writing streams of raw bytes such as image data .
Java BufferedInputStream Class
• RandomAccessFile in java is a class that lets the user read and write to a file at the
same time. It extends the Object class and implements DataInput and DataOutput
interfaces. These interfaces facilitate the conversion of primitive type data to a
sequence of bytes and bytes to specified type data. It is used to read and write data
to a file simultaneously. The file acts as a large array of bytes stored in the file
system.
• Methods of this class usually throw EOFException i.e. End of File Exception if the
end of the file is reached before the desired number of bytes are read. It is a type
of IOException.
• IOException is thrown if any error occurs other than EOFException like if the byte
cannot be read or written.
Unit-IV: Applets, Event Handling AWT and Swings
• Advantage of Applet
There are many advantages of applet. They are as follows:
• Drawback of Applet
Plugin is required at client browser to execute applet.
Lifecycle of Java Applet
.
Lifecycle methods for Applet:
The java.applet.Applet class provides 4 life cycle methods and java.awt.Component
class provides 1 life cycle methods for an applet
a) java.applet.Applet class
• For creating any applet java.applet.Applet class must be inherited. It provides 4 life
cycle methods of applet.
1) public void init(): is used to initialized the Applet. It is invoked only once.
2) public void start(): is invoked after the init() method or browser is maximized. It is
used to start the Applet.
3) public void stop(): is used to stop the Applet. It is invoked when Applet is stop or
browser is minimized.
4) public void destroy(): is used to destroy the Applet. It is invoked only once
b) java.awt.Component class
• The Component class provides 1 life cycle method of applet.
• public void paint(Graphics g): is used to paint the Applet. It provides Graphics class
object that can be used for drawing oval, rectangle, arc etc
Running an Applet
There are two ways to run an applet
• By html file.
• By appletViewer tool (for testing purpose).
• Graphics class is a part of the java. awt package and it provides several methods for
drawing and displaying output on the screen.
Event Handling
• Java AWT (Abstract Window Toolkit) is an API to develop Graphical User Interface
(GUI) or windows-based applications in Java.
• The java.awt package provides classes for AWT API such as TextField,
A Container in AWT is a component itself and it adds the capability to add component
to itself.
• Example : Panel, window, Frame
Swings
• Java Swing is a part of Java Foundation Classes (JFC) that is used to create
window-based applications. It is built on the top of AWT (Abstract Windowing Toolkit)
API and entirely written in java.
• The javax.swing package provides classes for java swing API such as JButton,
JTextField, JTextArea, JRadioButton, JCheckbox, JMenu, JColorChooser etc.
• Java JPanel
• The JPanel is a simplest container class. It provides space in which an application
can attach any other component. It inherits the JComponents class.
• It doesn't have title bar.