在 Netbeans 中处理单个 C 文件?
是否可以在 Netbeans 中创建(或打开现有的)C 程序文件而无需创建整个项目?这些可以稍后运行和编译吗?
Is it possible to create (or open existing) C program files in Netbeans without creating an entire project? Can these be later run and compiled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Netbeans 作为 C 文件的超大型编辑器,但如果您想从 Netbeans 构建程序,则需要一个项目。
You can use Netbeans as fancy oversized editor for C files, but if you want to build program from Netbeans, you will need a project.
如果您需要的只是到处进行一些小编辑,像 geany 这样的专门编辑器会为您提供更好的服务。
如果你想制作小程序,在开始小程序时,手动使用编译器的 geany + shell 会更简单。
您编辑代码,保存,然后在控制台上使用
gcc micode.c -o micode.exe
即可。You'll be better served by a dedicated editor like geany if all you need is some little edits here and there.
If you want to make small programs, geany + the shell using your compiler manually is simpler when starting small.
You edit your code, save, then
gcc micode.c -o micode.exe
on the console and your ready.