On Fri, 29 Jan 1999 20:01:23 +1030, Greg Lehey wrote:
> > I can't imagine how unnecessary parens are going to improve > > "readability" for anyone who knows his/her operator precedence. > > What about the others? I'd like to know that people who don't know operator precedence are leaving the kernel code alone, eh? :-) > Remember, we're not talking about the writer now, we're talking about > the reader, who in the general case is not the same person. Operator precedence is not a matter of perspective. A different person, who knows his or her operator precedence, will find the expression as easy to read as the writer. > Documentation is the castor oil of programming. Managers know it > must be good because the programmers hate it so much. I take this to mean "provide above your expression a comment that explains what you're doing", not "clutter your expression with unnecessary parens in case you've made a mistake that nobody will spot because you haven't commented your code properly." The reason I'm interested in this (now tiresome) thread is that I'd much rather have to read /* * Bail out if the time left to next transaction is less than * the duration of the previous transaction. */ if (t % u - n % u < d % u) { than if (((t % u) - (n % u)) < (d % u)) { Giving folks the go-ahead to use parens as a form of documentation is misguided and will end in tears. MHO. Ciao, Sheldon. To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message