Preview - Elliotte Rusty Harold to Visit ACGNJ Java Users Group
I am happy to announce that Elliotte Rusty Harold will visit this month's ACGNJ Java Users Group to present, " Exceptions: I'm Telling You for the Last Time " on Tuesday, April 11, 2017 at the Scotch Plains Rescue Squad (second floor) starting at 7:30pm. No feature of the Java programming language is as original or as misused and controversial as exception handling. More than twenty years after Java was introduced more developers don't understand exceptions than do. That's not surprising given that most textbooks and tutorials get exceptions seriously wrong by focusing on the rules you must follow rather than the reasons you should follow them. And yet just three rules cover 99% of what you need to know about exceptions: Separate exception handling from the main path by making try blocks as long as possible. Use checked exceptions for environmental problems and runtime exceptions for programming errors. Bubble exceptions you can't handle. Follow...