计算静态分配的内存量

发布于 2024-10-30 16:07:03 字数 176 浏览 0 评论 0原文

给定一个包含多个源文件的大型 C 项目,什么是计算它将使用多少静态分配内存的有效方法?

如果问题不够清楚,该值的一个很好的近似值是

Σ sizeof(x),其中 x 是一个数组

,可以在编译时获得。

Given a large C project with multiple source files, what is an efficient way of figuring out how much statically allocated memory will it use?

In case the question is not clear enough, a good approximation for the value would be

Σ sizeof(x), where x is an array

and can be obtained at compile time.

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

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

发布评论

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

评论(1

熟人话多 2024-11-06 16:07:03

构建它,然后使用检查生成的二进制文件的工具,因为它将包含此信息。

使用哪些工具取决于平台,在 Linux 上您可以尝试 nm 和/或 objdump

Build it, and then use tools that inspect the resulting binary, since it will contain this information.

Which tools to use depends on the platform, on Linux you might try nm and/or objdump.

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