一个好的 C++ Mac OS X 的编程环境
我尝试过 Xcode、textwrangler 和 Qt。我最喜欢textwrangler,但它不支持C++,即编译和检查语法。您能给我推荐一个好的编辑器吗?
我不喜欢 Xcode,因为它会猜测你正在输入的函数,而且它并不能帮助我学习语法。
I have tried Xcode, textwrangler and Qt. I like textwrangler the best but it doesn't support C++, i.e. compiling, and checking syntax. Can you please recommend a good editor for me?
I didn't like Xcode because it guesses what function you are typing and it's not helping me learn the syntax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你可能需要将学习语言和学习工具分开。
XCode 可能是 Mac 上最好的集成开发环境,您会喜欢它的自动完成功能,因为它可以节省您大量的打字!
如果您真的不想要它(我建议您这样做!)那么您可以将其关闭:
转到 XCode-> 首选项-> 文本编辑
并取消选中“输入时建议完成”
I think you probably need to separate learning the language from learning a tool.
XCode is probably the best integrated development environment for the Mac and you will come to appreciate its autocompletion feature as it saves you a lot of typing!
If you really don't want it (and I suggest that you do!) then you can turn it off:
Goto XCode->Preferences->Text Editing
and uncheck 'suggest completions while typing'
尝试一下Eclipse:
http://www.eclipse.org/downloads/
或
CodeBlocks:
http://www.codeblocks.org/
Try Eclipse:
http://www.eclipse.org/downloads/
or
CodeBlocks:
http://www.codeblocks.org/
我也刚刚开始在 Mac 上学习 C++。我喜欢使用 Xcode 编写和运行程序,因为它可以很好地组织项目的所有文件。此外,如果这是一个目标,那么学习 Objective-C 将会变得容易。
我确实建议关闭自动完成和实时错误检测,以提高您的学习和调试技能。我把两者都关掉了,有时也很挣扎,但我相信它增加了我的理解。
祝你好运!
I just started learning C++ on a mac as well. I like using Xcode to write and run the program since it does a good job of organizing all of the files for the project. Also, it will make learning objective-c easy if that is ever a goal.
I do suggest turning off the auto complete and the live error detection to improve your learning and debugging skills. I turned both off and have struggled at times but I believe that it has increased my understanding.
Best of luck either way!