double to short Java

After knowing primitive data types and Java rules of Data Type Casting (Type Conversion), let us see the Java style of casting double to short. The double takes 8 bytes of memory and short takes 2 bytes of memory. Assigning 8 bytes of memory to 2 bytes of memory requires explicit casting. Moreover, float takes …

double to short Java Read More »