What is the difference between the scalar and list contexts in Perl and does this have any parallel in other languages such as Java or Javascript?
|
1
|
|||||
|
|
|
Various operators in Perl are context sensitive and produce different results in list and scalar context. For example:
Output:
Now:
More elaborate examples could be constructed too (the results are an exercise for the reader):
There is no direct parallel to list and scalar context in other languages that I know of. |
||||||||||
|
|
|
Scalar context is what you get when you're looking for a single value. List context is what you get when you're looking for multiple values. One of the most common places to see the distinction is when working with arrays:
Other operators and functions are context sensitive as well:
How an operator (or function) behaves in a given context is up to the operator. There are no general rules for how things are supposed to behave. You can make your own subroutines context sensitive by using the In addition to scalar and list contexts you'll also see "void" (no return value expected) and "boolean" (a true/false value expected) contexts mentioned in the documentation. |
||||
|
|
|
This simply means that a data-type will be evaluated based on the mode of the operation. For example, an assignment to a scalar means the right-side will be evaluated as a scalar. I think the best means of understanding context is learning about wantarray. So imagine that = is a subroutine that implements wantarray:
The examples in this post work as if the above subroutine is called by passing the right-side as the parameter. As for parallels in other languages, yes, I still maintain that virtually every language supports something similar. Polymorphism is similar in all OO languages. Another example, Java converts objects to String in certain contexts. And every untyped scripting language i've used has similar concepts. |
||||||
|
