question 0:
//java
//
byte b = 0x80;
//
byte b = 0x70;
question 1:
0x80 We use the usual binary (no complement) to express that it should be 1000 0000. is the 1 in the binary a symbol bit (because I guess the above problem may be related to the symbol bit). )?
question 2:
if byte b =-10; does the system first check the positivity and negativity of-10 and then calculate the complement and store it on the computer? Or the phrase "the complement of a positive number is itself, and the complement of a negative number is an inverse + 1" is only a regular summary, so it cannot be understood in this way?
question 3:
how to explain-2 and 4294967294 are actually 0xFFFFFFFE stored in memory classes