I would like to know more about bytes that are signed in Java What make then signed. I tried to Google I don't get clarity, but if some can clearly explain to me maybe I will get it. Why are bytes signed in Java?
Asked
Active
Viewed 47 times
0
-
This is about as authoritative as it will get: http://stackoverflow.com/a/3108328/3419894 – JonK Mar 05 '15 at 14:29
-
Almost everything is signed in Java. You cant choose between signed and unsigned in Java, therefore for purpose of working with negative numbers, you need having unsigned variables. – libik Mar 05 '15 at 14:30
-
OK that's more understandable when you talking about working with negative values or numbers. – King Mar 05 '15 at 14:40