Writing clean code
Nice article with tips for writing clean code. The executive summary:
- Always know why you are catching an exception
- Never declare implementation types
- Use descriptive variable names
- Do not cut-and-paste code
- Declare variables where they are used
- Don't preserve return values you don't use
- Omit needless code!
Follow the link for all the details
- Always know why you are catching an exception
- Never declare implementation types
- Use descriptive variable names
- Do not cut-and-paste code
- Declare variables where they are used
- Don't preserve return values you don't use
- Omit needless code!
Follow the link for all the details
| Link: | www.garshol.priv.no...Search for more tips related to this link |
| Rating: | no ratings, 0 total Votes |
| Categories: | programming |
| Added: | on May 15, 2007 at 8:09 pm |
| Added By: | an anonymous user |
| Searches: | code programming clean writing declare |

