Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is lexical scope?

What is a brief introduction to lexical scoping?

like image 804
Subba Rao Avatar asked Jun 26 '09 05:06

Subba Rao


People also ask

What is lexical scope example?

Example 1: function x() { /* Variable 'a' is only available to function 'x' and function 'y'. In other words the area defined by 'x' is the lexical scope of variable 'a' */ var a = "I am a"; function y() { console.

What is scope and lexical scope in JavaScript?

Lexical scope is the ability for a function scope to access variables from the parent scope. We call the child function to be lexically bound by that of the parent function. The diagram below outlines the supposed hierarchy that the lexical scope maintains in JavaScript.

What is lexical and closure scope?

The lexical scope allows a function scope to access statically the variables from the outer scopes. Finally, a closure is a function that captures variables from its lexical scope. In simple words, the closure remembers the variables from the place where it is defined, no matter where it is executed.


2 Answers

Lets try the shortest possible definition:

Lexical Scoping defines how variable names are resolved in nested functions: inner functions contain the scope of parent functions even if the parent function has returned.

That is all there is to it!

like image 22
Pierre Spring Avatar answered Oct 22 '22 13:10

Pierre Spring


I understand them through examples. :)

First, lexical scope (also called static scope), in C-like syntax:

void fun() {     int x = 5;      void fun2()     {         printf("%d", x);     } } 

Every inner level can access its outer levels.

There is another way, called dynamic scope used by the first implementation of Lisp, again in a C-like syntax:

void fun() {     printf("%d", x); }  void dummy1() {     int x = 5;      fun(); }  void dummy2() {     int x = 10;      fun(); } 

Here fun can either access x in dummy1 or dummy2, or any x in any function that call fun with x declared in it.

dummy1(); 

will print 5,

dummy2(); 

will print 10.

The first one is called static because it can be deduced at compile-time, and the second is called dynamic because the outer scope is dynamic and depends on the chain call of the functions.

I find static scoping easier for the eye. Most languages went this way eventually, even Lisp (can do both, right?). Dynamic scoping is like passing references of all variables to the called function.

As an example of why the compiler can not deduce the outer dynamic scope of a function, consider our last example. If we write something like this:

if(/* some condition */)     dummy1(); else     dummy2(); 

The call chain depends on a run time condition. If it is true, then the call chain looks like:

dummy1 --> fun() 

If the condition is false:

dummy2 --> fun() 

The outer scope of fun in both cases is the caller plus the caller of the caller and so on.

Just to mention that the C language does not allow nested functions nor dynamic scoping.

like image 191
Khaled Alshaya Avatar answered Oct 22 '22 12:10

Khaled Alshaya