Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Objective-C 中的#import 和#include 有什么区别?
当我在 Objective-C 中使用 import 或 include 时,似乎两者都可以工作,这两者有什么区别?
..#include 和#import 请求预处理器读取文件并将其添加到其输出中。#include 和 #import 之间的区别在于
C 程序员倾向于使用#include。Objective-C 程序员倾向于使用#import。
在 Objective-C 中编译一个文件需要两遍。首先,预处理器遍历文件。预处理器的输出进入真正的编译器。预处理器指令以 # 开头。最受欢迎的三个是
-#包括
-#进口
-#定义