C++优化
我们能看到 C++ 中的优化代码吗……(不是汇编)??
Can we see optimized code in c++.............(not assembly)??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们能看到 C++ 中的优化代码吗……(不是汇编)??
Can we see optimized code in c++.............(not assembly)??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不。
“优化”是编译器对中间表示和汇编执行的操作,而不是对源代码执行的操作。
No.
'Optimization' is something a compiler does to the intermediate representation and assembly, not to the source code.
优化后的代码很少会在优化完好无损的情况下干净地翻译回其来源的语言,因为优化通常发生在汇编级别。要么是这样,要么“优化”在 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.