Daily Archives: January 14, 2011

Java Programming Tips

The following Java programming tips should help developers write Java programs that will have fewer bugs / problems and run faster: 1. Avoid “equals” conditional statements where the variable is checked against a constant. Always check the constant against the variable. If myStr (String) is ever null then the following conditional statement will throw an […]

Java, Programming Comments Off on Java Programming Tips