我的目标是通过在linux mint上做一个家庭作业项目并同时学习一些linux和c ++来继续学习C++编程语言.
我打算编写一个小型桌面应用程序来显示当前的网络流量(如Windows中的DU计).我有以下问题:
我注意到薄荷中有一个名为"系统监视器"的应用程序,它还显示网络历史记录,其中包含信息和图形,如当前下载/上传数据和速度.通过查看代码来开始这是一个好主意吗?如何在薄荷中找到相同的代码并深入研究?请尽可能帮助我们完成一些步骤.
我在这里需要用什么工具来编写linux中的c ++应用程序?
在linux上使用哪个GUI库(比如c#winforms,它提供用户控件作为GDI lib的一部分)我们有什么提供用户控件,如窗口/按钮/面板/等?
初学者级教程的链接将很有帮助.
希望不要在这里完全重新发明轮子.是否愿意重新使用一些做网络流量部分的lib,想法?
PS:我知道这篇文章的内容是"想成为" - 我真的很高兴用一些c ++开始.将更精确的问题改写这篇文章.在黑暗中徘徊在这一点上,ac#开发人员完全被windows破坏了.
提前致谢!!!有关这方面的提示......
薄荷分发基于Ubuntu/Debian,所以我假设我的Ubuntu方法也适用于薄荷.
第一
你需要一些工具,库和标题:
# install the standard toolchain (g++, make, etc.) sudo aptitude install build-essential # install the build dependencies for a desktop based networking tool sudo aptitude build-dep gnome-nettool
可选
因为您提到了系统监视器 - 从源代码构建gnome-system-monitor可能会有所帮助:
# install the build dependencies for gnome-system-monitor sudo aptitude build-dep gnome-system-monitor # get the sources for the gnome-system-monitor mkdir example cd example apt-get source gnome-system-monitor # build the gnome-system-monitor # note: you might have a different version. But I'm sure you get the idea ;-) cd gnome-system-monitor-2.28.0 sh configure make
最后
你需要开发和调试的东西.很多unix开发人员推荐emacs或vi(m).但我个人认为你应该从一个基于GUI的"现代"IDE开始.
这里是一些常用IDE的集合:
Eclipse与CDT
NetBeans的
代码::块
Anjuta(这用于开发gnome-system-monitor?)
CodeLite(这是我个人的最爱)
另请参阅:讨论SOF关于Linux的 "最佳" C++ IDE