+ 1
What is the difference between signed int and unsigned int ?
java
4 Respostas
+ 15
Signed int can have a sign at the start: either + or -
Unsigned ints are only positive
+ 15
The differences are:
- unsigned ints don't have a sign, such as + or -
- signed ints have a sign, that means they can have a positive or negative value
- Java doesn't have signed ints, but only unsigned ints.
+ 15
Beat you by a second 😎 @Tashi N
+ 2
thanks every body