Clan x86

Technical (Development, Security, etc.) => General Programming => Topic started by: Camel on September 16, 2009, 01:47:00 PM

Title: throw null;
Post by: Camel on September 16, 2009, 01:47:00 PM
...will crash your catch block

discuss
Title: Re: throw null;
Post by: iago on September 16, 2009, 02:12:14 PM
You shouldn't go throwing things that don't exist. Liable to cause an anomaly, it is.
Title: Re: throw null;
Post by: Sidoh on September 16, 2009, 07:24:41 PM
is that kind of like tricking a dog into running after nothing while playing fetch?
Title: Re: throw null;
Post by: rabbit on September 16, 2009, 07:35:01 PM
Or naming it "Stay" and telling it to "come here" all the time?
Title: Re: throw null;
Post by: MyndFyre on September 16, 2009, 07:59:46 PM
Quote from: Camel on September 16, 2009, 01:47:00 PM
...will crash your catch block

discuss
In .NET I'm pretty sure it would simply generate a NullReferenceException (analogous to NullPointerException in Java) in the stack frame in which the "throw null" existed which could bubble up to a higher stack frame with the appropriate handler.

Is that it?