GLib 与 APR 各自的优缺点

发布于 2024-07-09 04:55:28 字数 1449 浏览 9 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

泪之魂 2024-07-16 04:55:28

我认为glib总体上优于apr。 glib 有更多的数据结构作为可移植库。 例如哈希表、各种列表、队列、堆栈、动态数组,也用于参数解析,文件 io 也有它自己的包装器,并且内存管理很容易修改。 例如,您可以轻松地使用 Boehm Weisser GC 来使 glib 轻松起来,这是 AFAIKT 从未完成过的操作,或者使用 Apache 可以轻松实现。 我会做出一些不同的决定。 如果您需要更有用的数据结构库,glib 是更好的选择。 如果涉及到 GUI 的东西,libapr 就什么都没有了,而 glib 有 gdk/gtk+,如果你喜欢的话,还有很多 gnome 的东西。

然而,如果涉及到网络方面,libapr 绝对比 glib 有优势。

所以我的建议是

  • 桌面编程:使用 GTK+ 和 glib。
  • 网络东西:使用 apr,但请放心,glib 也有所有这些便携式东西。

I think glib is generally superior to apr. glib has many more datastructures as portable libraries. e.g hash tables, all kind of lists, queues, stacks, dynamic array, also for argument parsing, file io has it's own wrappers also and memory managment is easy modifiable. E.g you can easily make glib use the Boehm Weisser GC this is AFAIKT never been done or easy possible with Apache. I would decide a bit different. If you need a more useful library of data structures glib is a better equipped. If it comes to GUI stuff than libapr has nothing whereas glib has gdk/gtk+ and a lot of stuff for gnome if you like.

However, if it comes to network stuff, libapr definitely has an edge over glib.

So my suggestions is

  • Desktop programming: Use GTK+ and glib.
  • Network stuff: Use apr, but be assured glib does have all this portable stuff also.
蔚蓝源自深海 2024-07-16 04:55:28

我会选择APR。 APR 更擅长 Unix/Windows 的可移植性(作为专用的可移植性库),GLib 传统上更面向 Unix。 APR 是一个比 GLib 更大的库,里面有很多有用的东西(哈希表、参数解析、文件 I/O 东西、内存管理、共享内存例程、信号处理等)。

I'd go with APR. APR is better at portability Unix/Windows (being a dedicated portability library), GLib has traditionally been more Unix-oriented. APR is a larger library than GLib, with lots of useful stuff in it (hash tables, argument parsing, file I/O stuff, memory management, shared memory routines, signal handling, etc.).

零度℉ 2024-07-16 04:55:28

您有什么理由不想使用 c++ stl 吗? 即使您正在编写没有类的“C 风格”代码,您也可以使用 C++ 字符串和数据结构。

当然,有很多充分的理由坚持使用 C。 如果是这样的话,我会支持 glib 的建议。 APR 与其说是一个实用程序库,不如说是一个可移植层。

Is there a reason you wouldn't want to use the c++ stl? Even if you are writing "c-style" code without classes, you can use c++ strings and data structure.

There are plenty of valid reasons to stick to C, of course. If that's the case, I would second the recommendation for glib. APR is more of a portability layer than a utility library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文