gpt4 book ai didi

c++ - 在 linux mint 上学习 c++(适用于 .net 开发人员)

转载 作者:太空狗 更新时间:2023-10-29 23:34:40 25 4
gpt4 key购买 nike

我的目标是通过在 linux mint 上做一个家庭作业项目来跳转到 C++ 编程语言,同时学习一些 linux 和 c++。

我打算编写一个小型桌面应用程序来显示当前的网络流量(如 Windows 中的 DU 仪表)。我有以下问题:

  1. 我注意到 mint 中有一个名为“系统监视器”的应用程序,它还可以显示网络历史记录以及当前下载/上传数据和速度等信息和图表。从查看代码开始是个好主意吗?我怎样才能在 mint 中找到相同的代码并深入研究它?如果可能,请帮助完成一些步骤。

  2. 我需要什么工具来为/在 linux mint 中编写 C++ 应用程序?

  3. 在 linux mint 上使用哪个 GUI 库(如在 c# winforms 中,它提供用户控件作为 GDI 库的一部分)我们有什么可以提供用户控件,如窗口/按钮/面板/等?<​​/p >

  4. 初级教程的链接会很有帮助。

  5. 希望不要在这里完全重新发明轮子。是否愿意重新使用一些负责网络流量部分的库,想法?

PS:我知道这篇文章写着“想要”——我真的很高兴能开始使用一些 C++。将用更精确的问题改写这篇文章。作为一个完全被 Windows 宠坏的 c# 开发人员,在黑暗中狩猎。

提前致谢!!!有关这方面的提示...

最佳答案

mint 发行版基于 Ubuntu/Debian,因此我假设我的 Ubuntu 方法也适用于 mint。

首先

您需要一些工具、库和 header :

# 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
  • 代码:: block
  • Anjuta(这是用来开发 gnome-system-monitor 的吗?)
  • CodeLite(我个人最喜欢的)

另见:关于 SOF 关于“最佳”的讨论 C++ IDE for Linux

关于c++ - 在 linux mint 上学习 c++(适用于 .net 开发人员),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1976719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com