How can we handle runtime exceptions? write one sample
program? Can we write runtime exceptions beside the throws
key word? if yes write sample program?
Answer / amit2009mca
there is no need to handle a runtime exception,
but acording to question
there are two types through which we could handle the
exception one is decalre the exception and other try catch
block.
so for this i'll show you the customize way for this.
class AmitSingh extends RuntimeException
{
}
class Amit
{
int number;
Amit(int number)
{
this.number = number;
}
public void method1()
{
try
{
if(number>5)
throw new AmitSingh();
}
catch(AmitSingh e)
{
System.out.println(e.printStackTrace());
}
public static void main(String []args)
{
Amit a = new Amit(20);
a.method1();
}
}
but i don't think there is need to this because jvm is
responsible for all that thanks AMIT SINGH09
| Is This Answer Correct ? | 2 Yes | 1 No |
What is continuity of a function?
Is vector thread safe in java?
Is singleton class thread safe?
How to create an interface?
What do you understand by the term polymorphism?
Define inheritance?
Why is it important to initialize a variable?
What is a default package ?
How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
What will happen inside init() in servlet. my interviewer asked servlet lifecycle. i said "once servlet is loaded in to memory init() will be called which performs servlet initialization " . Again interview asked what values will be initialized . what is difference between init() and init(ServletConfig config).
2 Answers Infinite Computer Solutions, TCS,
What is object-oriented paradigm?
Define Multiprogramming and Multiprocessing in java.
0 Answers Akamai Technologies,