“...We've got a great selection of material in this issue, from Paul's excellent boiler plating article to...”
My Boiler Plating Database Resource Cleanup – Part I article has been published in the January 2009 (volume 20 issue 6) issue of the ACCU's CVu magazine.
It has a very nice introduction (see above) from the guest editor Faye Williams and even some feedback from a reader, Roger Orr. The icing on the cake would have been my name and picture on the front cover, but hey, you can't have everything. ;-)
My minor comment was that you can, since Java 5, avoid a pair of overloads:
ReplyDeletevoid func( String arg );
void func( String[] args );
In Java5 and above you can write
void func( String ... args );
The caller can pass in either a single string or an array pf strings; the compiler automatically packages the single string into an array of length one.
Roger Orr.