I accidentally discovered this a=b=c=d=e=f=2
in python(2.7)(and JavaScript a few minutes later) interpreter .
Is this a feature or just the way the interpreter works, if is a feature how it is called ?
Do other languages have this feature ?
I accidentally discovered this Is this a feature or just the way the interpreter works, if is a feature how it is called ? Do other languages have this feature ? |
||||
show 3 more comments |
In many languages, the The line
Thus, this then reduces to This is known as chained assignment |
|||
|
This type of feature is typically known as "chained assignment." Languages that consider assignment to be expressions have this type of feature. Multiple assignment typically means something else, e.g. Python:
This type of syntax structure can be referred to as multiple assignment. In the context of Python, this is also known as unpacking. The astute programmer might note that this is related to multiple return values:
There are a large number of languages that support chained assignment or multiple assignment in different ways. C, C++, Java, and C# support the syntax you provided. VB does not support chained assignment (since assignment is a statement and not an expression like in the C family). Go supports multiple assignment similarly to Python, e.g. a swap:
I believe Lua supports multiple assignment and multiple return values. It can be done in a Lisp but there's usually a better way to go about it. Basically, most languages support either of these features in some way. |
|||||||||||||||||
|
Assignments like these are OK for simple objects. For others, it can lead to undesirable side effects. In linked list the example below, in the line:
We may expect that Item(1).nxt points to Item(2) and last points to Item(2) However, we end up with a circular reference where Item(2).nxt points to itself. For example:
|
|||||
|
It is a feature of the language, the = statement evaluates the statement to its right and assigns that value to the variable on the left. In Python a statement like a, b = 1,2 is also legal. That is called multiple assignment. See Python Docs I don't know of a special term for the a=b=2 structure though. It is just multiple assignments on the same line. |
|||||||||||||||||
|
a=b=c=d=e=f=2
is the code example you just run it in the interpreter either in python or browser console. – Eduard Florinescu Sep 20 '12 at 15:33