Search Results

1
vote

Which, and why, do you prefer Exceptions or Return codes?

I prefer to use exceptions for error handling and return values (or parameters) as the normal result of a function. This gives an easy and consistent error-handling scheme and if done correctly it …
1
vote

When do you use an IDE?

I usually use the IDE only for debugging (which IDE depends on the language/platform), and use my personal editor for the actual editing of code. I feel that using one editor for everything …
2
votes

Magic numbers vs named constants

I tend to use constants over magic numbers almost exclusively. I think it increases readably and gives you one point in the program to fix any errors. There are several magic '60's, for example: …