Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

precedence lossage

You are here: irt.org | FOLDOC | precedence lossage

/pre's*-dens los'*j/ A misunderstanding of operator precedence resulting in unintended grouping of arithmetic or logical operators when coding an expression. Used especially of mistakes in C code due to the nonintuitively low precedence of "&", "|", "^", "<" and ">>". For example, the following C expression, intended to test the least significant bit of x,

	x & 1 == 0

is parsed as

	x & (1 == 0)

which is always zero (false).

Some lazy programmers ignore precedence and parenthesise everything. Lisp fans enjoy pointing out that this can't happen in *their* favourite language, which eschews precedence entirely, requiring one to use explicit parentheses everywhere.

[Jargon File]

(1994-12-16)

Nearby terms: PRE-CC « PRECCX « precedence « precedence lossage » precharge » precision » predecessor

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb