是否有必要使用xlib的“XAllocSizeHints()”?
Xlib 有一个名为 XAllocSizeHints 的函数,用于在堆上分配 XSizeHints 结构并将其设置为零。
XSizeHints *sizehints;
sizehints=XAllocSizeHints();
但是,有必要一直使用这个功能吗?或者我可以这样做:
XSizeHints sizehints;
memset(&sizehints, 0, sizeof(XSizeHints));
我想知道是否也可以避免 XAllocWMHints
和 XAllocClassHint
。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
堆栈分配这些是可以的(只要你不在当前的之后保留它们)
函数当然返回)。这些分配函数没有什么魔力。事实上,大多数代码可能确实在堆栈上分配它们。
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.
实际上,使用 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().