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.
我正在处理我的应用程序C++中的文件。由于某种原因,编译器不接受语句,它给了我很多错误。为什么会这样?Xcode 4.5iPhoneC++
C++
Xcode 4.5
iPhone
任何帮助,将不胜感激!谢谢
CAStreamBasicDescription.h并CAXException.h包含 C++ 代码。它们只能包含在 C++ 或 Objective-C++ 源文件中。
CAStreamBasicDescription.h
CAXException.h
这些错误表明包含这两个头文件的文件没有被编译为 C++ 或 Objective-C++。错误中的引用Class表明它被编译为普通的 Objective-C。.mm如果您确实打算将文件编译为,请确保该文件具有文件扩展名Objective-C++,并检查文件检查器部分中的Type未设置为非默认值Identity and Type。
Class
.mm
Objective-C++
Type
Identity and Type