是否有必要使用xlib的“XAllocSizeHints()”?

发布于 2024-12-28 08:18:06 字数 354 浏览 0 评论 0原文

Xlib 有一个名为 XAllocSizeHints 的函数,用于在堆上分配 XSizeHints 结构并将其设置为零。

XSizeHints *sizehints;
sizehints=XAllocSizeHints();

但是,有必要一直使用这个功能吗?或者我可以这样做:

XSizeHints sizehints;
memset(&sizehints, 0, sizeof(XSizeHints));

我想知道是否也可以避免 XAllocWMHintsXAllocClassHint

Xlib has a function called XAllocSizeHints to allocate a XSizeHints structure on the heap and set it to zero.

XSizeHints *sizehints;
sizehints=XAllocSizeHints();

However, is it necessary to always use this function? Or can I do this:

XSizeHints sizehints;
memset(&sizehints, 0, sizeof(XSizeHints));

I would like to know if it is possible to avoid XAllocWMHints and XAllocClassHint too.

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

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

发布评论

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

评论(2

清音悠歌 2025-01-04 08:18:06

堆栈分配这些是可以的(只要你不在当前的之后保留它们)
函数当然返回)。这些分配函数没有什么魔力。事实上,大多数代码可能确实在堆栈上分配它们。

It's fine to stack allocate these (as long as you don't keep them around after the current
function returns of course). There's no magic in those alloc functions. In fact most code probably does allocate them on the stack.

酒解孤独 2025-01-04 08:18:06

实际上,使用 memset 方式更好,因为如果调用 XAllocSizeHints(),则需要使用 XFree() 显式释放内存。

It's actually better to use memset way, because if you call XAllocSizeHints() then you need to explicitly free memory with XFree().

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