MyClass GlobalVar;
int main()
{
MyClass VarInMain;
}
|
|
A couple of things:
|
||
|
|
|
|
A global variable is accessible to any function. A variable in main acts exactly like any other local variable, and is only accessible to code in main. Also, if main (or another function) calls itself, the local variables will be copied, but global variables will not.
This example will output: 1 2 Moving the "int x = 0;" into myfunction will output: 1 1 Because the local variable gets initialised each time myfunction is called. |
||
|
|
|
|
Another difference: Global variables will be initialized before the program starts (i.e. main() gets called) whereas the local variables are initialized as execution reaches that point (i.e. just after main is called in the above example). |
||
|
|
|
|
Another one: The global variables (or variables in any other namespaces) are initialized to But in my opinion, it's a good idea to explicitly initialize things anyway, and not rely on that zero initialization since it improves readability of the program when the initial value is explicitly mentioned. It's however still useful to know when reading someone else's code, always keeping in mind the compiler will initialize those automatically. The local variable when it is not declared static isn't automatically initialized. So you have to do any initialization on your own in case |
||||||||
|
|
|
Another difference: the order of global object initilization is undefined. For example:
As these are objects, the C++ runtime will call their constructors when initializing them, but we can't predict the order in which this will happen. |
||||
|
|
|
More differences:
In general, it is not a good practice to use global objects without very strong reasons to do so. Using of globals often leads to code which is hard to maintain. |
||
|
|
|
|
A simple example:
} A global variable is visible globally, across all functions. A local variable is visible in the scope in which it is declared only. if you declare a local variable inside main, it will be visible there, yes, but not in functions that are called from main. |
||
|
|
|
|
|
||
|
|
|
|
globals can be used in functions declared outside of main, while anything declared in main, must be passed to another function first. |
||
|
|
|
|
Scope. VarInMain can be accessed directly only by code in main. GlobalVar can be accessed directly by code in any function in the file. |
||
|
|
|
|
The variable VarInMain is a local variable and can only be used inside the function where it is declared, in your case, the main function. The GlobalVar can be used in every function of your program because it was declared outside of a function. This is called Scope. |
||
|
|

mainis that same as any other function except that the loader starts the execution there, the standard tells you the signature, and you can to skip the return value. – dmckee May 6 at 17:22