Say one has 8 unsigned chars x1,x2,...x8
and we want to calculate:
abs((x1 + x2 + x3 + x4) - (x5 + x6 + x7 + x8)) / 4
What would be the best way to ensure the most accurate results, without introducing large overflow or underflow errors?
I'm using this in a template class, which is why I cannot just convert the unsigned values to signed ones.
The
operator +
only works forint
and larger. Thus when you use it with objects of typechar
(which is smaller than int) these values are automatically converted to int before the operation happens.Thus
Is converted by the compiler to:
So unless you are adding up a lot of char you are unlikely to overflow.
There is an issue assigning the result back to
unsigned char
. If result of the expression is negative then you are going to have a conversion that makes the value positive (but well defined).