让 Eclipse 将 .h 文件视为 C++?
我们所有的 C++ 头文件都使用 .h 扩展名。 Eclipse 认为这些是 C 标头,并在类和名称空间等方面用大量语法错误标记它们。
我尝试更改文件类型关联:
Preferences > C/C++ > File types
但它已“锁定”。
有趣的是,“*.h”与 C 和 C++ 头文件相关联,但它似乎使用 C。如何让 Eclipse 将 .h 文件视为 C++?
All of our C++ headers use a .h extension. Eclipse thinks these are C headers and flags them with lots of syntax errors on things like classes and namespaces.
I've tried to change the file type association from:
Preferences > C/C++ > File types
but it's "locked".
Interestingly, "*.h" is associated with both C and C++ headers, but it seems to be using C. How can I get Eclipse to treat .h files as C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试创建一个新项目并将源区域指定为位置。 但是,请确保选择 C++ 项目(我通常使用 makefile 选项)。 为了让解析器识别 C++ 语法,您需要做的就是这些。
Try creating a new project and specify your source area as the location. However, be sure you select C++ project (I usually use the makefile option). This is all you should have to do in order to make the parser recognize C++ syntax.