? Possible duplicate: What is the difference between #include and ...">

What is the difference between #import "xxx" and #import <xxx>?

Possible duplicate:
What is the difference between #include <filename> and #include "file name"?
The difference between writing #import <filename.h> and #import "filename.h". Have I written the file name in angular brackets and quotation marks?

This may be a dumb question. What is the difference between #import <QuartzCore/QuartzCore.h>and #import "QuartzCore/QuartzCore.h"? (more or less than double quotes)

They both work.

+5
source share
2 answers

#import "QuartzCore/QuartzCore.h" - " , ", <QuartzCore/QuartzCore.h> - " ". , - , C, - .

+6

#include <something> , .
#include "something" .

0

All Articles