why there are multiple catches for a try block.don't tell me
that there can be multiple exception of a code segment
that's why.tell me the real fact behind this.

Answer Posted / tulasi prasad

I under stood ur problem, I will expalin with an example

public class Test
{
public static void main(String args[])
{
try
{
int n =2/args.length;
int x[]={1,2};
x[30]=4;
}
catch(ArithmeticException e)
{
System.out.println("Divede by Zero");
}
catch(IndexOutOfBoundsException e)
{
System.out.println("ArrayIndex Out of

Bounds");
}
}
}

if u run with out any commandline argument then u got
divide by zero exception. otherwise u get indexbounds
exception

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why are parameters used in functions?

704


Is stringwriter thread safe?

715


What does jre stand for?

789


What are methods in java?

714


How many bytes is double?

720


What is the difference between serial and throughput garbage collector?

761


Can we use both this () and super () in a constructor?

760


what is object slice?

1758


What is the difference between applet and application?

718


What is the use of isempty in java?

741


Explain about class in java?

804


How many java versions are there?

726


What about abstract classes in java?

799


What do you mean by compiler?

780


give an example for encapsulation?

754