I need to know that does the #define directive in C++ declares global label? By global I mean visible in every file?
I'm using Visual Studio 2008, (guess if that matters)
|
|
I need to know that does the #define directive in C++ declares global label? By global I mean visible in every file? I'm using Visual Studio 2008, (guess if that matters)
|
||
|
|
|
|
No, only in the current translation unit. I.e. every file which has Edit, to respond to your comment: to get a define in every file, either put it in a header which gets included everywhere, or use some compiler option to get defines added. e.g. for gcc one would do
Not sure how one specifies such includes in VC++, but I'm sure it's possible somehow. |
||||||||||||||||
|
|
|
You can also setup a visual studio property sheet, which is backed by a .vsprops file, and assign that to the relevant project(s) in your solution. This would allow you to easily maintain common settings of many types across multiple projects, even if they're in discrete solution files. http://msdn.microsoft.com/en-us/library/a4xbdz1e%28VS.80%29.aspx |
||
|
|
|
|
However, to make it truly global you need a Visual Studio extension. The /D command-line option allows you to pass the equivalent of |
||
|
|
|
|
A To define something across source files, it would need to be in a header file that all source files include |
||
|
|
|
|
Whatever macro you have defined in one file will only be visible in another file if you have included the file with the macro in it, so it's not automatically global. Generally, for this reason macros should be defined in your header files such that you can do a #include "headerFile.h". |
||
|
|
|
|
Symbol, defined by "#define" is visible from the place of directive to the end of the translation unit (or to the nearest "#undef" for this symbol). For example, if you define something in "file.h" file, this symbol is seen in "file.h" and in every file, which includes "file.h", direct or indirect... |
||
|
|
|
|
It is not global, it is just for the current file/source |
||
|
|
|
|
It'll only be defined in the file you define it or in the files that include that file |
||
|
|