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
Why are parameters used in functions?
Is stringwriter thread safe?
What does jre stand for?
What are methods in java?
How many bytes is double?
What is the difference between serial and throughput garbage collector?
Can we use both this () and super () in a constructor?
what is object slice?
What is the difference between applet and application?
What is the use of isempty in java?
Explain about class in java?
How many java versions are there?
What about abstract classes in java?
What do you mean by compiler?
give an example for encapsulation?