If not now then never.
If not now then never.
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
Originally posted by megha joshi:
Thanks Marc,
Last point in your notes was totally new to me...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
Originally posted by megha joshi:
...Also want to add one more point to these exception notes:
-> The exception thrown last by the method will override all the previous exceptions...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
Originally posted by megha joshi:
...I will be very greatful if I could get such points from you all for topics Generics and regex, my weakest areas...Can I start a new thread for it? ...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
If not now then never.
Originally posted by Joe Wolfe:
...I was confused about the checked exceptions and the ioexceptions. From the text I read it seemed that the only checked exceptions were ioexceptions which struck me as odd. I must look up the other classes to see whats there.
I notice the error class exceptions are called somethingsomethingerror and the runtime exceptions class are called somethingsomethingexception. This is a good clue to what I am dealing with...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
A return statement in the finally block will cause any caught exception to be "lost," since the method will return normally.
Regards, Abdul Mohsin
Originally posted by Abdul Mohsin:
...can you explain this a bit more...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
If not now then never.
Originally posted by Joe Wolfe:
...also when I complied a try without either catch or finally I got a compile error.
There were over 80 classes under exception and not runtime. And many of these had subclasses too.
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
debasmita
Originally posted by debasmita pattnayak:
...Can you provide an example and explain...
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
cmbhatt
debasmita
class MyThread extends Thread{
public void run(){
System.out.println("In MyThread");
throw new RuntimeException();
}
}
class Test{
public static void main(String[] args){
MyThread t = new MyThread();
t.start();
try{
Thread.sleep(1000);
}
catch(Exception e){}
System.out.println("In Main");
}
}
Did you see how Paul cut 87% off of his electric heat bill with 82 watts of micro heaters? |