(bye) Byte.MAX_VALUE + 1 == Byte.MIN_VALUE ?

Hi(bye) Byte.MAX_VALUE + 1 == Byte.MIN_VALUE the above expression is evaluated as true. why is it so?according to my understanding 128 is not equals to -128.please explain. i'm new to java.Thx
[235 byte] By [nalajala2a] at [2007-10-3 3:07:01]
# 1
Go learn 2s complement. http://en.wikipedia.org/wiki/Two's_complement
TuringPesta at 2007-7-14 20:57:19 > top of Java-index,Java Essentials,Java Programming...
# 2
> Hi> > (bye) Byte.MAX_VALUE + 1 == Byte.MIN_VALUE > > the above expression is evaluated as true. why is it> so?> according to my understanding 128 is not equals to> -128.0x7F + 1 == 0x80
jverda at 2007-7-14 20:57:19 > top of Java-index,Java Essentials,Java Programming...