@[email protected] to Programmer [email protected] • 3 months agoComenting codelemmy.mlimagemessage-square87fedilinkarrow-up11.18Karrow-down112
arrow-up11.17Karrow-down1imageComenting codelemmy.ml@[email protected] to Programmer [email protected] • 3 months agomessage-square87fedilink
minus-square@[email protected]linkfedilink6•3 months agoNot everything needs a comment - knowing when comments add value is the key… “what” vs “why” is usually a good indicator but some code just doesn’t need a comment.
minus-square@[email protected]linkfedilink3•3 months agoDoesn’t need any comment: int getCount() { return count; } Absolutely needs a very extensive comment: double getBojangleFlux { return fubar * .42; }
Not everything needs a comment - knowing when comments add value is the key… “what” vs “why” is usually a good indicator but some code just doesn’t need a comment.
Doesn’t need any comment:
int getCount() { return count; }
Absolutely needs a very extensive comment:
double getBojangleFlux { return fubar * .42; }