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 文件使用 .m 扩展名?
我在想 .h 代表标题。我想 .m 可以代表主要,但我不知道。你们中有人真的知道吗?
只是为了澄清,我知道哪个文件中有什么。(即我知道每种文件类型的用途。)我只是好奇文件扩展名是否有任何特殊含义。
.h 代表标题,而 .m 代表实现
对,.h 代表头文件。.m 适用于您的代码,例如 c++ 中的 .cpp
问候, 布克