RE: [OT[ How do I ........?

2006-11-15 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: How do I ? Since you get bitten in C by missing an equals (it's quite easily to miss it visually), I got into the habit of putting the null first. Belt and suspenders? Why the heck are we discussing things like this

Re: [OT[ How do I ........?

2006-11-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: How do I ? Since you get bitten in C by missing an equals (it's quite easily to miss it visually), I got into the habit of putting the

RE: [OT[ How do I ........?

2006-11-15 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: [OT[ How do I ? Belt and suspenders? It's just a habit, okay!? :P Not complaining; I think it's a clever and wholly appropriate thing to do. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL

Re: [OT[ How do I ........?

2006-11-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: [OT[ How do I ? Belt and suspenders? It's just a habit, okay!? :P Not complaining; I think it's a clever and wholly appropriate

Re: [OT[ How do I ........?

2006-11-15 Thread Leon Rosenberg
On 11/15/06, Christopher Schultz [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: [OT[ How do I ? Belt and suspenders? It's just a habit, okay!? :P

RE: [OT[ How do I ........?

2006-11-15 Thread Caldarale, Charles R
From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Subject: Re: [OT[ How do I ? as long as you don't parenthesise everything just for the fun of it, like in tomcats code, you shouldn't have fear, warrior. public String getAuthType() { return (this.authType); } being

RE: [OT] How do I ........?

2006-11-15 Thread Caldarale, Charles R
From: Martin Gainty [mailto:[EMAIL PROTECTED] Subject: Re: How do I ? This is one of those SS!=DS discussions which means that variables placed/alloc'ed on the stack are NOT the same as variables alloc'ed from heap so when using a variable which is alloced on the stack AND

Re: [OT] How do I ........?

2006-11-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chuck, Caldarale, Charles R wrote: [...] their allocation is up to the particular JVM implementation and need not be materialized in memory at all. This is a good point that I didn't mention. The description I have given indicates how Java will