C++优化

发布于 2024-09-06 19:04:10 字数 34 浏览 3 评论 0原文

我们能看到 C++ 中的优化代码吗……(不是汇编)??

Can we see optimized code in c++.............(not assembly)??

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

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

发布评论

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

评论(2

寄意 2024-09-13 19:04:10

不。

“优化”是编译器对中间表示和汇编执行的操作,而不是对源代码执行的操作。

No.

'Optimization' is something a compiler does to the intermediate representation and assembly, not to the source code.

奈何桥上唱咆哮 2024-09-13 19:04:10

优化后的代码很少会在优化完好无损的情况下干净地翻译回其来源的语言,因为优化通常发生在汇编级别。要么是这样,要么“优化”在 C++(或其他语言)级别上完全是人为的 - 例如,使用一条指令而不是另一条指令实现 if 语句之间的差异。

Optimised code rarely translates back to the language it came from cleanly, with the optimisations intact, since optimisations will usually happen at the assembly level. Either that, or the 'optimisations' are entirely artificial at the C++ (or other language) level - the difference between implementing an if statement with one instruction rather than another for example.

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