In C++, what is the scope resolution ("order of precedence") for shadowed variable names? I can't seem to find a concise answer online.

For example:

#include <iostream>

int shadowed = 1;

struct Foo
{
    Foo() : shadowed(2) {}

    void bar(int shadowed = 3)
    {
        std::cout << shadowed << std::endl;
            // What does this output?

        {
            int shadowed = 4;
            std::cout << shadowed << std::endl;
                // What does this output?
        }
    }

    int shadowed;
};


int main()
{
    Foo().bar();
}

I can't think of any other scopes where a variable might conflict. Please let me know if I missed one.

What is the order of priority for all four shadow variables when inside the bar member function?

link|improve this question

You could have a code block inside bar() that declares shadowed as well. – Carl Norum May 10 '10 at 17:34
"scope resolution" – Ignacio Vazquez-Abrams May 10 '10 at 17:35
Added case for code block inside bar(). – Emile Cormier May 10 '10 at 17:37
@Ignacio: Did you mean that "scope resolution" is the proper term for "order of precedence" with regards to shadowing? – Emile Cormier May 10 '10 at 17:38
Correct. – Ignacio Vazquez-Abrams May 10 '10 at 17:39
feedback

2 Answers

up vote 17 down vote accepted

Your fist example outputs 3. Your second outputs 4.

The general rule of thumb is that lookup proceeds from the "most local" to the "least local" variable. Therefore, precedence here is block -> local -> class -> global.

You can also access each most versions of the shadowed variable explicitly:

#include <iostream>

int shadowed = 1;

struct Foo
{
    Foo() : shadowed(2) {}

    void bar(int shadowed = 3)
    {
        std::cout << ::shadowed << std::endl //Prints 1
        std::cout << this->shadowed << std::endl //Prints 2
        std::cout << shadowed << std::endl; //Prints 3
        {
            int shadowed = 4
            std::cout << ::shadowed << std::endl //Prints 1
            std::cout << this->shadowed << std::endl //Prints 2
            //It is not possible to print the argument version of shadowed
            //here.
            std::cout << shadowed << std::endl; //Prints 4
        }
    }

    int shadowed;
};


int main()
{
    Foo().bar();
}
link|improve this answer
Added a code block inside bar() in my question. Please add that extra case, and your answer will be perfect. :-) – Emile Cormier May 10 '10 at 17:39
+1 Thanks for updating. – Emile Cormier May 10 '10 at 17:49
feedback

It should print out 3. The basic rule is mostly to work your way backward through the file to the most recent definition the compiler would have seen (edit: that hasn't gone out of scope), and that's what it uses. For variables that are local to a class, you follow the same except that all class variables are treated as if they were defined at the beginning of the class definition. Note that this is more or less unique to classes though. For example, given code like:

int i;

int x() { 
    std::cout << i << '\n'; // prints 0;
    int i=1;
}

Even though there is an i that's local to the function, the most recent definition seen where cout is used is the global, so that's what the i in that expression refers to. If, however, this were in a class:

int i;

class X { 
    void y() { std::cout << i << "\n"; }

    X() : i(2) {}

    int i;
};

Then the cout expression would refer to X::i even though its definition hasn't been seen yet when y is being parsed.

link|improve this answer
X::y is missing an end semicolon. – Billy ONeal May 10 '10 at 17:45
+1 Good point about variables not declared yet. – Emile Cormier May 10 '10 at 17:50
@Billy: Corrected -- thank you. – Jerry Coffin May 10 '10 at 17:59
feedback

Your Answer

 
or
required, but never shown

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