c – 如何避免整数溢出?

前端之家收集整理的这篇文章主要介绍了c – 如何避免整数溢出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在以下C代码中,32767 1 = -32768.
#include <iostream>
int main(){
short var = 32767;
var++;
std::cout << var;
std::cin.get();
}

有没有办法让“var”保持为32767,没有错误

解决方法

就在这里:
if (var < 32767) var++;

顺便说一下,你不应该对常量进行硬编码,使用< limits>中定义的numeric_limits< short> :: max().头文件而不是.

您可以在功能模板中封装此功能

template <class T>
void increment_without_wraparound(T& value) {
   if (value < numeric_limits<T>::max())
     value++;
}

并使用它像:

short var = 32767;
increment_without_wraparound(var); // pick a shorter name!
原文链接:https://www.f2er.com/c/117187.html

猜你在找的C&C++相关文章