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.
一些计算机语言从不承认发生了溢出这一事实,但这样做有什么好处呢?我假设这样做的缺点是,如果您有一个整数,那么您必须牢记某些界限。
我假设这样做的缺点是,如果您有一个整数,那么您必须牢记某些界限。
正如您所说,这并不是真正的缺点。但是,如果您考虑如何为有符号和无符号加法定义“溢出”,您可能会意识到,如果您忽略溢出,则可以进行重大简化。
另外,考虑性能。
优点包括捕获值无意溢出的错误。