C Cpp IDE:修订间差异
来自Ubuntu中文
跳到导航跳到搜索
Dbzhang800(留言 | 贡献) 小 →其他参考 |
Dbzhang800(留言 | 贡献) 小无编辑摘要 |
||
第15行: | 第15行: | ||
==anjuta== | ==anjuta== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
Anjuta DevStudio 的官方地址:http://anjuta.sourceforge.net/ | Anjuta DevStudio 的官方地址:http://anjuta.sourceforge.net/ | ||
第22行: | 第24行: | ||
'''参考:''' | '''参考:''' | ||
*[http://forum.ubuntu.org.cn/viewtopic.php?t=79137 Linux下用Anjuta写个Hello World 的C++程序竟如此简单!] | *[http://forum.ubuntu.org.cn/viewtopic.php?t=79137 Linux下用Anjuta写个Hello World 的C++程序竟如此简单!] | ||
|width=300|[[Image:C cpp ide Anjuta.png|thumb|300px|anjuta界面]] | |||
|} | |||
==kdevelop== | ==kdevelop== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
KDevelop Project 的官方地址:http://www.kdevelop.org/ | KDevelop Project 的官方地址:http://www.kdevelop.org/ | ||
第31行: | 第43行: | ||
'''参考:''' | '''参考:''' | ||
*[http://forum.ubuntu.org.cn/viewtopic.php?t=25271 KDevelop扫盲帖] | *[http://forum.ubuntu.org.cn/viewtopic.php?t=25271 KDevelop扫盲帖] | ||
|width=300|[[Image:C cpp ide Kdevelop.png|thumb|300px|kdevelop界面]] | |||
|} | |||
==geany== | ==geany== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
Geany 的官方地址: | Geany 的官方地址: | ||
*http://geany.uvena.de/ | *http://geany.uvena.de/ | ||
第39行: | 第62行: | ||
'''安装方法:''' | '''安装方法:''' | ||
sudo apt-get install geany | sudo apt-get install geany | ||
|width=300|[[Image:C cpp ide Geany.png|thumb|300px|geany界面]] | |||
|} | |||
==codeblocks== | ==codeblocks== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
Code::Blocks 的官方地址: | Code::Blocks 的官方地址: | ||
* http://www.codeblocks.org | * http://www.codeblocks.org | ||
* http://sourceforge.net/projects/codeblocks | * http://sourceforge.net/projects/codeblocks | ||
|width=300|[[Image:C cpp ide Codeblocks.jpg|thumb|300px|codeblocks界面]] | |||
|} | |||
==eclipse== | ==eclipse== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
eclipse 的官方地址:http://www.eclipse.org | eclipse 的官方地址:http://www.eclipse.org | ||
'''安装方法:''' | '''安装方法:''' | ||
sudo apt-get install eclipse-cdt eclipse | sudo apt-get install eclipse-cdt eclipse | ||
|width=300|[[Image:C cpp ide Eclipse.png|thumb|300px|eclipse界面]] | |||
|} | |||
==netbeans== | ==netbeans== | ||
{|style="margin: 0pt 0pt 1em 1em; font-size: 0.9em; width: 95%;" | |||
| | |||
netbeans 的官方地址:http://www.netbeans.org/ | netbeans 的官方地址:http://www.netbeans.org/ | ||
第59行: | 第119行: | ||
'''参考:''' | '''参考:''' | ||
* [http://gceclub.sun.com.cn/NetBeans/tutorials/ NetBeans 5.0本地教程主索引] | * [http://gceclub.sun.com.cn/NetBeans/tutorials/ NetBeans 5.0本地教程主索引] | ||
|width=300|[[Image:C cpp ide Netbeans.png|thumb|300px|netbeans界面]] | |||
|} | |||
==其他IDE== | ==其他IDE== | ||
第67行: | 第134行: | ||
**[http://blog.csdn.net/wooin/archive/2007/10/31/1858917.aspx 手把手教你把Vim改装成一个IDE编程环境(图文)] | **[http://blog.csdn.net/wooin/archive/2007/10/31/1858917.aspx 手把手教你把Vim改装成一个IDE编程环境(图文)] | ||
== | ==相关词条== | ||
{{gccmorerefer}} | {{gccmorerefer}} |
2008年5月23日 (五) 18:24的版本
前言
鉴于不断有网友将编译器 GCC 误认为 IDE(集成开发环境)
- 期望脱离命令行
- 期望能在菜单中发现其身影
- 期望其能有一个集编辑编译链接调试运行于一体的界面
故本文给大家简单罗列一些 C/C++ 编程中可用的 IDE,或许你从中可以找一个你喜欢的。
为避免以下某个软件安装时不自动安装 build-essential 不妨先执行:
sudo apt-get install build-essential
注意噢:本文在期待你的完善。
anjuta
Anjuta DevStudio 的官方地址:http://anjuta.sourceforge.net/ 安装方法: sudo apt-get install anjuta 参考:
|
kdevelop
KDevelop Project 的官方地址:http://www.kdevelop.org/ 安装方法: sudo apt-get install kdevelop 参考:
|
geany
Geany 的官方地址: 安装方法: sudo apt-get install geany
|
codeblocks
Code::Blocks 的官方地址:
|
eclipse
eclipse 的官方地址:http://www.eclipse.org 安装方法: sudo apt-get install eclipse-cdt eclipse
|
netbeans
netbeans 的官方地址:http://www.netbeans.org/ 安装方法: sudo apt-get install netbeans 参考:
|
其他IDE