Hi,
Is there any direct way to find, whether overflow occured in a computation, in Java. For eg., assume the following code segment:
byte a = 10, b = 120, c = a + b;
here, overflow occured and 'c' wil have a wrong value, instead of 130, (since a byte can hold only upto +128). I just want to...