0
votes
How do you style major and minor comments?
Major comment
/*** Function - fooBar() ****************************
** Description **
** does the flooble using the bardingle algorithm ** …
0
votes
In Java, why do people prepend fields with `this`?
"this" prevents confusion with instance variables with the same name in the parent class/es.
It's pretty much the complement to prepending with "super".
…
