Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At: http://www.learncpp.com/cpp-tutorial/110-a-first-look-at-the-preprocessor/

Under Header guards, there are those code snippets:

add.h:

#include "mymath.h"
int add(int x, int y);

subtract.h:

#include "mymath.h"
int subtract(int x, int y);

main.cpp:

#include "add.h"
#include "subtract.h"

In implementing the header guard, it is mentioned as follows:

#ifndef ADD_H
#define ADD_H

// your declarations here

#endif
  • What could the declaration be here? And, should int main() come after #endif?
  • Is adding _H a convention or a must do thing?

Thanks.

share|improve this question
So, is the header gurad implemented above inserted in "add.h"? – Med-SWEng Jan 22 '11 at 9:47

5 Answers

The FILENAME_H is a convention. If you really wanted, you could use #ifndef FLUFFY_KITTENS as a header guard (provided it was not defined anywhere else), but that would be a tricky bug if you defined it somewhere else, say as the number of kittens for something or other.

And the declarations are literally the above code.

#ifndef ADD_H
#define ADD_H

#include "mymath.h"
int add(int x, int y);

#endif

Finally, int main() shouldn't be in a header file. It should always be in a .cpp file.

EDIT: To clear it up:

The #ifndef basically means 'if this file has not already been looked at, look at it'. If it has been looked at, then it will skip everything in the file. So if you include it twice, then when it is first included the compiler will see what the add function is. It will also try to include the mymath.h file IF that hasn't been looked at already.

share|improve this answer
So, the command you are writing above should ONLY go in the .h files? Thanks. – Med-SWEng Jan 22 '11 at 9:41
4  
+1 for FLUFFY_KITTENS – Mehrdad Jan 22 '11 at 9:55
GG FLUFFY_KITTENS. – DeadMG Jan 22 '11 at 10:20
But, wouldn't #include "mymath.h" be included twice in main.cpp? Thanks. – Med-SWEng Jan 22 '11 at 17:07
+1 for FLUFFY_KITTENS – Calvin Froedge Jan 6 '12 at 2:43

All the header guards do is to only allow your headers to be included once. (If they're included multiple times, they're ignored.)

The name you use doesn't matter, but it's conventional to use the file name in caps, including the extension like you demonstrated.

Your main should really be in a .cpp file, but if you're putting it in a header, put it inside the guards so it isn't declared multiple times.

share|improve this answer
Thanks for your reply. But, isn't the issue here with "mymath.h" and including it twice in "main.cpp" since we have two includes to "add.h" and "subtract.h"? – Med-SWEng Jan 22 '11 at 9:50
Yes, indeed it is. That's why you should put a MATH_H guard in there. (I'm not sure if I understood your question correctly...) – Mehrdad Jan 22 '11 at 9:56
Where do you mean by "in there"? Do you mean mymath.h? – Med-SWEng Jan 22 '11 at 17:09
@SWEngineer: Yes – Mehrdad Jan 22 '11 at 18:40
  • The result of preprocessing one implementation (".cpp") file is a translation unit (TU).

  • Headers can include other headers, so a header may be indirectly included multiple times within the same TU. (Your mymath.h is an example of this.)

  • Definitions can only occur at most once per TU. (Some definitions must also not be in multiple TUs; this case is slightly different and not discussed here.)

  • The problem include guards solve is preventing multiple definition errors when a given header is included more than once within one TU.

  • Include guards work by "wrapping" the contents of the header in such a way that the second and subsequent includes are no-ops. The #ifndef/#define directives should be the first two lines of the file, and #endif should be the last.

  • Include guards are only used in headers. Do not define your main function in a header: put it in an implementation file.

If you have a header that will define a type and declare a function, but also needs a header itself:

#include "other_header.h"

struct Example {};

void f();

"Wrapping" it with include guards gives the complete contents of the file:

#ifndef UNIQUE_NAME_HERE
#define UNIQUE_NAME_HERE

#include "other_header.h"

struct Example {};

void f();

#endif

The name used for the include guard must be unique, otherwise conflicting names will give confusing results. These names are only simple macros, and there is nothing in the language which enforces a certain style. However, project conventions usually impose requirements. There are several different include guard naming styles you can find here on SO and elsewhere; this answer gives good criteria and a good overview.

share|improve this answer
thanks for your reply. How can we avoid #include "mymath.h" from appearing twice in main.cpp? Thanks. – Med-SWEng Jan 22 '11 at 17:16
@SWEngineer: You don't; the include guard makes every include of the header, after the first, do nothing. – Fred Nurk Jan 22 '11 at 21:32

No, the int main() goes in a .cpp. The declarations are the other stuff you were gonna put in the header. _H is a convention, you can see various header guard conventions around.

share|improve this answer

I declare a declaration in header file and definitions or int main() comes in source.cpp file.

_H is there to merely indicate that someone is going to include header files using include guards.

If you're on MSVC++ you can also use #pragma once

share|improve this answer
gcc can handle #pragma once too – kinnou02 Jan 22 '11 at 9:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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