Difference between local scope and function scope

前端 未结 5 1785
独厮守ぢ
独厮守ぢ 2020-12-20 19:05

Once I assumed that these two have the same meaning but after reading more about it i\'m still not clear about the difference. Doesn\'t the local scope sometimes refer to sc

5条回答
  •  [愿得一人]
    2020-12-20 19:30

    void doSomething()
    {                                    <-------
         {                   <----               | 
                                  |              |
             int a;           Local Scope    Function Scope
                                  |              |
         }                   <----               | 
    }                                    <------- 
    

    Function Scope is between outer { }.

    Local scope is between inner { }

    Note that, any scope created by {``} can be called as the local scope while the {``} at the beginning of the function body create the Function scope.
    So, Sometimes a Local Scope can be same as Function Scope.

    what does it mean that only labels have a function scope?

    Labels are nothing but identifiers followed by a colon. Labeled statements are used as targets for goto statements. Labels can be used anywhere in the function in which they appear, but cannot be referenced outside the function body. Hence they are said to have Function Scope.

    Code Example:

    int doSomething(int x, int y, int z)
    {
         label:  x += (y + z);   /*  label has function scope*/
         if (x > 1) 
             goto label;
    }
    
    int doSomethingMore(int a, int b, int c)
    {
         if (a > 1) 
             goto label; /*  illegal jump to undefined label */
    }
    

提交回复
热议问题