What is the scope of a while and for loop?
For example, if I declared an object within the loop, what is it's behavior and why?
|
In the following examples all the variables are destroyed and recreated for each iteration of the loop except
As for why, I guess it was designed this way because it was most useful and made the most sense. |
|||||||||||||
|
|
Anything declared in the loop is scoped to that loop and cannot be accessed outside the curly braces. In fact, you don't even need a loop to create a new scope. You can do something like:
|
|||||
|
|
|||||||||||
|
|
Just wanted to add that variables declared in the for or while loop are also scoped within the loop. For example:
|
|||
In the above sample code, both The reason for this is simply that the Standard says so; that's how the C++ language works. As for motivation, consider that this can be used to your advantage:
In the above code, we are using an RAII smart pointer to "own" the expensive object we created within the loop. The scoping semantics of the |
|||||
|
|
In C/C++, the scope of a variable declared in a for or while loop (or any other bracketed block, for that matter) is from the open bracket to the close bracket.
|
|||
|
|
|
The variable is within the scope of the loop. I.e. you need to be within the loop to access it. It's the same as if you declared a variable within a function, only things in the function have access to it. |
|||
|
|
scopes as if it were:
The purpose is so that variables go out of scope at clearly defined sequence points. |
|||
|
|
|
Check out this code
In the code above, the global variable i is different from one which is controlling the for loop. It will print
when while loop is executed - the variable i defined inside while is having local scope, where as the variable under (i > 3) follows the global variable, and doesn't refer to local scope. Dipan. |
|||
|
|
Hometag? Did you meanHomework? :) – Alok Save Oct 24 '11 at 19:20