up vote 0 down vote favorite
share [g+] share [fb]

Which determines the scope of a variable, the declaration or definition?


The documentation that I read says that the declaration determines the scope, but my own test said the contrary:

I get "undefined reference to i" error with the linker:

#include <iostream> // Stream declarations
using namespace std;
    extern int i; //declaration
int prueba();

int main() {
    int i; //Definition
    i=6;
    prueba();
} ///:~

int prueba(){
     cout << i; //cannot access to the scope of i;
}
link|improve this question
This question only makes sense where the declaration is different from the definition, which is very rare. So, if you could give us an example of the case you're concerned with, I'm sure we could answer it. – Brian Postow Oct 29 '09 at 18:54
Distinguishing between definition and declaration only makes sense for types/functions, doesn't it? Is it possible to make this distinction with variables? – jalf Oct 29 '09 at 19:32
I think like @Michael Burr also indicates that this question has an "easy" answer that just says the scope of a name is its declaration, and a "detailed but cumbersome" answer, that actually explains the scope of a variable and which has many special cases. Not sure what the question actually asks for. – Johannes Schaub - litb Oct 29 '09 at 19:42
@Jalf: Extern also distinguishes between decl and defn... but yeah, other than that... – Brian Postow Oct 29 '09 at 19:52
The use of "declaration" and "definition" is confusing. IMHO, a declaration is the first addition of a name to a scope, a redeclaration refers to a name that is already in the scope. A definition can occur either in a declaration or in a redeclaration. A definition is just a property of a declaration. – Richard Corden Oct 30 '09 at 17:48
feedback

5 Answers

Declaration. You can declare something external, and it's visible in that file, no matter where it was defined. Similarly, a function is visible anywhere it's declared.

Other than externs and functions though, I can't think of a way to declare a variable that doesn't also define it...

EDIT: OTOH, static (global) variables, the scope is determined by the definition, which is ALSO the declaration.

EDIT 2: Basically I think my point is that you can't really have a definition that isn't ALSO a declaration. so, the only interesting cases are where the declaration isn't also a definition, and that's basically extern with a global in another file, and function declarations...

link|improve this answer
Good point that most declarations are also definitions. – Michael Burr Oct 29 '09 at 19:55
1  
In C++, using declarations are another way to declare something that doesn't define it. – Johannes Schaub - litb Oct 29 '09 at 20:02
@litb - I was sure there would be something C++ that I was forgetting about. Even though they're not obscure, using declarations aren't exactly everyday things (at least for me). – Michael Burr Oct 29 '09 at 20:10
using doesn't really separate the decl and defn, it more changes where the scope is... like making the { } not continious or something... but yeah, it does do wacky things to scope. – Brian Postow Oct 29 '09 at 20:44
This is what i like in C, actually :) Things are clearly defined and you can answer such a question by quoting one paragraph of the standard. In C++, these things are weird and even the Standard's notion of scope is in error ( open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#554 ). One time it's a name that has scope, another time it's the object/variable that has a scope and temporaries suddenly are "local objects" without having defined this term anywhere. – Johannes Schaub - litb Oct 29 '09 at 20:49
show 4 more comments
feedback

Both determine the scope - it's just that they determine the scope of subtly different things.

The definition of an object in C/C++ determines at which scope the actual object is visible in and determines the 'largest scope' of visibility for an object or function.

The declaration determines at which scope a particular 'instance' of the name is visible in.

For example, a global variable is defined at global scope (of course) and is potentially visible at global scope or a tighter scope. But the following declaration of the global variable, g_var, is only visible within function foo():

void foo(void)
{
    extern int g_var;    // the variable g_var has global scope, but this
                         //    declaration has function-level scope

    printf( "g_var is: %d\n", g_var);
}

Brian Postow's point that this distinction really only applies to global variables and functions is a a good one to keep in mind.

link|improve this answer
feedback

It enters scope at the ... declarator of the definition. so

int x=3;
{
  int x=x; // x is initialized to itself, uninitialized.
}

The iso c++ spec is unfortunately not freely available, so I can't quote chapter and verse.

link|improve this answer
feedback

The definition determines the scope.

link|improve this answer
feedback

From the online version of the C standard:

6.1.2.3 A label name is the only kind of identifier that has function scope. It can be used (in a goto statement) anywhere in the function in which it appears, and is declared implicitly by its syntactic appearance (followed by a : and a statement).

6.2.1.4 Every other identifier has scope determined by the placement of its declaration (in a declarator or type specifier). If the declarator or type specifier that declares the identifier appears outside of any block or list of parameters, the identifier has file scope, which terminates at the end of the translation unit. If the declarator or type specifier that declares the identifier appears inside a block or within the list of parameter declarations in a function definition, the identifier has block scope, which terminates at the end of the associated block. If the declarator or type specifier that declares the identifier appears within the list of parameter declarations in a function prototype (not part of a function definition), the identifier has function prototype scope, which terminates at the end of the function declarator. If an identifier designates two different entities in the same name space, the scopes might overlap. If so, the scope of one entity (the inner scope) will be a strict subset of the scope of the other entity (the outer scope). Within the inner scope, the identifier designates the entity declared in the inner scope; the entity declared in the outer scope is hidden (and not visible) within the inner scope.

Emphasis mine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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