Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我听说人们说它没有,但我认为最好问一下。
当你尝试它时会发生什么?为您关心的一些代码计时,用 重新编译-g,并对新代码计时。
-g
包含所有调试内容并不会更快,但这并不意味着它会更慢。最重要的是,这并不意味着它会在您关心的代码中变慢。如果你有一个程序在没有它的情况下运行 30 秒,在-g有它的情况下运行 31 秒,你在乎吗?
优化俱乐部的第一条规则是“不优化”。第二条规则是“不经过测量就不要优化”。