Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 21

Lab 3

Exception
• An exception can occur for many different
reasons.
• Some examples:
- A user has entered invalid data.
- A file that needs to be opened cannot be
found
- Insufficient memory and other issues related
to physical resources.
Types of Exceptions
• There are two exception types,
– checked exceptions and
– unchecked (also called runtime).
• The main difference is that checked exceptions are checked
when compiled, while unchecked exceptions are checked at
runtime.
Some checked Exceptions Some Unchecked exception
NoSuchMethodException ArthmeticException
NOSuchFieldException ArrayIndexOutOfBoundException
InterruptedException FileNotFoundException
IllegalAccessException NullPointerException
ClassNotFoundException IllegalArgumentException
IOException InputMismatchException

3
The five keywords
• Try- a block surrounding code that might cause
exception
• Catch- together with try, catches specific kinds of
exceptions and handles them in someway
• Finally – specifies any code that must be executed
whether or not exception occurs
• Throws – specifies which exception a method can
throw
• Throw – used to throw an instance of specific
exception occurred in the program
Program with exception
public class MyExceptionHandling {
public static void main(String a[]){
for(int i=5;i>=0;i--){
System.out.println(10/i);
}
System.out.println("After for loop...");
}
}
Simple try…catch
public class MyException {
public static void main(String a[]){
try{
for(int i=5;i>=0;i--){
System.out.println(10/i);
}}catch(ArithmeticException e){
System.out.println("ArithmeticException has occured:"
+ e.getMessage());
}
System.out.println("After for loop...");
}
}
Throws and Throw keywords
class Worker{
public void workingMethod()throws ArithmeticException{
for(int i=5;i>=0;i--){
if(i==0)
throw new ArithmeticException("Division by 0
Exception at workingMethod()");
System.out.println(10/i);
//System.out.println("After for loop...");
}
}
}
Cont…
public class MyThrowsClause {
public static void main(String a[]){
try{
Worker working = new Worker();
working.workingMethod();
}catch(ArithmeticException e){
System.out.println("ArithmeticException has occured:"
+ e.getMessage());
}
System.out.println("After for loop...");
}
}
Finally keyword
public class MyException {
public static void main(String a[]){
try{
for(int i=5;i>=0;i--){
System.out.println(10/i);
}}catch(ArithmeticException e){
System.out.println("ArithmeticException has occured:"
+ e.getMessage());
}finally{
System.out.println("The operation has failed“);
}
System.out.println("After for loop...");
}
}
Threads
Thread
• There are two ways to create a thread:
– By extending Thread class
– By implementing Runnable interface.
Thread class
• Thread class provide constructors and
methods to create and perform operations on
a thread
– Thread()
– Thread(String)
Commonly used methods of Thread class:
public void run(): is used to perform action for a
thread.
public void start(): starts the execution of the thread.
JVM calls the run() method on the
thread.
public void sleep(long Causes the currently executing thread
miliseconds): to sleep (temporarily cease execution)
for the specified number of
milliseconds.
public void join(): waits for a thread to die.
public void join(long waits for a thread to die for the
miliseconds): specified miliseconds.
Runnable interface
• The Runnable interface should be
implemented by any class whose instances are
intended to be executed by a thread.
• Runnable interface have only one method
named run().
– public void run(): is used to perform action for a
thread.
Starting a thread
• start() method of Thread class is used to start
a newly created thread.
• It performs following tasks:
– A new thread starts(with new callstack).
– The thread moves from New state to the Runnable
state.
– When the thread gets a chance to execute, its
target run() method will run
Example by extending thread class
class Multi extends Thread{
public void run(){
System.out.println("thread is running...");
}
public static void main(String args[]){
Multi t1=new Multi();
t1.start();
}
}
Implementing runnable
class MultiRunnable implements Runnable{
public void run(){
System.out.println("thread is running...");
}

public static void main(String args[]){


MultiRunnable m1=new MultiRunnable();
Thread t1 =new Thread(m1);
t1.start();
}
}
The sleep method

class TestSleepMethod1 extends Thread{


public void run(){
for(int i=1;i<5;i++){
try{ Thread.sleep(500);
}catch(InterruptedException e){
System.out.println(e);
}
System.out.println(i);
}
}
public static void main(String args[]){
TestSleepMethod1 t1=new TestSleepMethod1();
TestSleepMethod1 t2=new TestSleepMethod1();

t1.start();
t2.start();
}
}
Multi-tasking
• How to perform multiple tasks by multiple
threads (multitasking in multithreading)?
– have multiple run() methods.
• Can we have multiple run methods on in a
single class then ?
– No
• Solution
– Create multiple classes each with its own run
– Start instances of these classes from your main class
Example
class Simple1 extends Thread{
public void run(){
System.out.println("task one");
}
}

class Simple2 extends Thread{


public void run(){
System.out.println("task two");
}
}
class TestMultitasking3{
public static void main(String args[]){
Simple1 t1=new Simple1();
Simple2 t2=new Simple2();

t1.start();
t2.start();
}
}

You might also like