associativity

<programming>

The property of an operator that says whether a sequence of three or more expressions combined by the operator will be evaluated from left to right (left associative) or right to left (right associative). For example, in Perl, the lazy and operator && is left associative so in the expression:

  $i >= 0 && $x[$i] >= 0 && $y[$x[$i]] == 0

the left-most && is evaluated first, whereas = is right associative, so in

  $a = $b = 42

the right-most assignment is performed first.

Last updated: 2007-06-16

Nearby terms:

Associative Memory Parallel Processing LanguageassociativityAST

Try this search on Wikipedia, Wiktionary, Google, OneLook.



Not using Html Comment Box  yet?


Original text
Rate this translation
Your feedback will be used to help improve Google Translate