vote up 3 vote down star

What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?

I was reading the following tutorial: http://www.otierney.net/objective-c.html#preamble and its paragraph about #import and #include seems to contradict itself or at least is unclear.

flag

2 Answers

vote up 5 vote down check

The #import directive was added to Objective-C as an improved version of #include. Whether or not it's improved, however, is still a matter of debate. #import ensures that a file is only ever included once so that you never have a problem with recursive includes. However, most decent header files protect themselves against this anyway, so it's not really that much of a benefit.

Basically it's up to you to decide which you want to use. I tend to #import headers for Object-C things (like class definitions and such) and #include standard C stuff that I need. For example, one of my source files might look like this:

#import <Foundation/Foundation.h>

#include <asl.h>
#include <mach/mach.h>
link|flag
Even if header files contain include guards, there is still a performance hit during compilation if you use #include -- the compiler must open up each header file to notice the include guards. – Matt Dillard Jan 13 at 16:41
what is a header guard? – Ryan Guill Jan 14 at 14:43
a header guard is a preprocessor directive that ensures a header is only included once in a source file. – Jason Coco Jan 15 at 16:14
vote up 4 vote down

#include works just like the C #include.

#import keeps track of which headers have already been included and is ignored if a header is imported more than once in a compilation unit. This makes it unnecessary to use header guards.

The bottom line is just use #import in Objective-C and don't worry if your headers wind up importing something more than once.

link|flag
pretending for a minute that I am not familiar with the C #include (mostly because I am not), what is the main difference between #include and #import? Also, can you tell me what a header guard is? – Ryan Guill Jan 13 at 20:01

Your Answer

Get an OpenID
or

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