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.
一个非常基本的问题:
考虑一个无符号整数值,我们想检查它不等于 0。使用!=or >,在 C++ 中使用哪个更有效?
!=
>
你的应用程序太慢了吗?如果是,您应该做的第一件事是配置文件——这将向您显示导致程序运行缓慢的原因。
如果您的程序没有效率问题,那么您不必担心这一点。事实上,在这个阶段担心速度是一件坏事,因为人们经常编写可读性较差的代码来试图提高速度,而这甚至都不是问题。