How should I go about fixing build errors?

53 Views Asked by At

Should I fix my build errors as soon as I get them ? Or should I (let's say) try to fix all of my errors every week or so ? Or should I just code the majority of my app and then try to fix all the errors ?

In other words, how often should I be trying to fix all of my build errors ?

2

There are 2 best solutions below

2
On BEST ANSWER

I would consistently try and fix errors as you find/create them, and focus on making a compiling and running application with each individual change you do.

If you are using version control, focus on making each change set a running application, even if some of your stuff isn't finished yet.

0
On

Generally, my personal rule is that I don't allow a commit with errors in it. Normally I'll make a commit when I finish a feature or portion of a feature. After I finish roughing out a feature, I'll "cleanup". This is where I format my code, optimize things, and remove warnings.