Java - Signed integers
Types for storing signed integers.Java
Other pieces of example codes:long x= -82345;
byte x= -5;
int x= -12345;
short x= -1234;
You can find it in the following collections: integers | numbers | data types
Signed integers in another programming language: