vote up 2 vote down star

I've seen the term "lexical variable" a few times, mostly in the context of closures. Paul Graham uses the term in his books on Lisp referring to variables defined using the let expression.

I understand that lexical scoping is another name for static scoping. Is lexical variable just a variable that is visible in a program unit's referencing environment?

I hope to use this term to impress my friends and family this holiday season, can someone help me out?

flag

43% accept rate
+1 for wanting to impress your family with programming terms. You must have a nerdy family. :) – Jon Tackabury Dec 19 '08 at 18:25

3 Answers

vote up 2 vote down

A lexical variable is a variable that can only be referenced (by name) within its lexical scope. In other words, the scope of the variable is defined by the text of the program, not the dynamics of the program's execution. The variable and the value bound to it may have extent (life) beyond the lexical scope, e.g., if it is captured in a closure.

See this description of scope and extent.

link|flag
vote up 0 vote down

A lexical variable is visible in a program unit's referencing environment, but not all variables that are visible in a program unit's referencing environment are necessarily lexical variables.

Basically, a lexical variable is one that is specific to the scope where it is defined. In a language like Perl, you essentially have two namespaces masked on top of each other: the underlying dynamic package namespace, and the overlaid lexical namespace. So $foo could refer to either, depending solely on whether it's been declared lexically.

link|flag
So would it be safe to say that the terms "lexical variable" and "local variable" are interchangeable? With lexical being somewhat more precise? – Tim Merrifield Dec 19 '08 at 18:15
Nope. Perl has scope-localized variables that aren't lexical (they're implemented in the package namespace), using the local() keyword. – chaos Dec 20 '08 at 23:45
vote up -1 vote down

Look here. A language needs to be Lexically Scoped for Lexical Scope to to apply. It basically means that a variable is immutable even if in an inner scope the variable is redefined.

link|flag
That's not really lexical scoping. Lexical/static scoping allows you to determine the referencing environment of a program unit statically. The only real alternative approach is dynamic scoping which uses the order of subprogra calls (runtime stack). But it has nothing to do with immutability. – Tim Merrifield Dec 19 '08 at 18:43
I beg to differ, a variable that cannot be change or overridden by an inner-scoped variable most definitely fits the description of "immutable". When answering a question on a subject that someone is not familiar with I use terms that may be more familiar to them, hence the precondition "basically" – joshperry Dec 19 '08 at 19:48
The variable's mutability is irrelevant. Lexical scoping is about visiblity. – Tim Merrifield Dec 19 '08 at 23:14
It most definitely is relevant because even if an inner scope redefines a variable with the same name as one in the lexical scope it will not change the lexical variable. Perhaps I should have phrased it "the variable reference is immutable even if in an inner scope the variable is redefined" – joshperry Dec 20 '08 at 2:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.