Why not use long for all integer values

10,568

Solution 1

Does it make sense to use for example, an int data type, instead of a long data type?

ABSOLUTELY YES.


MEMORY / DISK USAGE

Using only one variable or two you won't see difference of performance, but when apps grow it will increase your app speed.

Check this question for further info.

Also looking to Oracle primitive type documentation you can see some advices and the memory usage:

type    memory usage    recommended for
------- --------------- ---------------------------------------------------
byte    8-bit signed    The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters.
short   16-bit signed   same as byte
int     32-bit signed   
long    64-bit          Use this data type when you need a range of values wider than those provided by int
float                   Use a float (instead of double) if you need to save memory in large arrays of floating point numbers. This data type should never be used for precise values, such as currency.

byte:

The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters.

short:

The short data type is a 16-bit signed two's complement integer. It has a minimum value of -32,768 and a maximum value of 32,767 (inclusive). As with byte, the same guidelines apply: you can use a short to save memory in large arrays, in situations where the memory savings actually matters.

int:

By default, the int data type is a 32-bit signed two's complement integer, which has a minimum value of -2³¹ and a maximum value of 2³¹-1. In Java SE 8 and later, you can use the int data type to represent an unsigned 32-bit integer, which has a minimum value of 0 and a maximum value of 2³²-1.

long:

The long data type is a 64-bit two's complement integer. The signed long has a minimum value of -2⁶³ and a maximum value of 2⁶³-1. In Java SE 8 and later, you can use the long data type to represent an unsigned 64-bit long, which has a minimum value of 0 and a maximum value of 2⁶⁴-1. Use this data type when you need a range of values wider than those provided by int.

float:

The float data type is a single-precision 32-bit IEEE 754 floating point. Its range of values is beyond the scope of this discussion, but is specified in the Floating-Point Types, Formats, and Values section of the Java Language Specification. As with the recommendations for byte and short, use a float (instead of double) if you need to save memory in large arrays of floating point numbers. This data type should never be used for precise values, such as currency.


CODE READABILITY

Also, it will clarify your mind and your code, lets say, you have a variable that represents the ID of an object, this object ID will never use decimals, so, if you see in your code:

int id;

you will now for sure how this ID will look, otherwise

double id;

wont.

Also, if you see:

int quantity;
double price;

you will know quantity won't allow decimals (only full objects) but price will do... That makes your job (and others programmers will read your code) easier.

Solution 2

Apart from the Range (the min and max value that can be stored in any particular data type) there is another aspect and that is size of the variable.

You must be aware of the following too:

byte = 1 byte
short = 2 bytes
int = 4 bytes
long = 8 bytes

So using long variable means you are allocating 8 bytes of memory to it.

Something like,

long var = 1000L

does not show efficient use of memory. What if you got GBs of RAM these days does not mean we should waste it.

Simple point I want to make is, more efficient use of memory, faster will be the app.

Share:
10,568
Robert Tossly
Author by

Robert Tossly

Updated on June 06, 2022

Comments

  • Robert Tossly
    Robert Tossly about 2 years

    In my Java class we have just learned about of each of the following primitive data types:

    • byte
    • short
    • int
    • long

    Since the long data type contains the most bits, wouldn't it make sense to exclusively use the long data type to avoid restrictions?

    Questions

    • Is there a particular downside to only using the long data type?
    • Does it make sense to use for example, an int data type, instead of a long data type?
  • Robert Tossly
    Robert Tossly almost 9 years
    Ahhhh, so the sole benefit would be to increase efficiency/speed?
  • hansvb
    hansvb almost 9 years
    Why are speed/efficiency not enough of a benefit? The existence of primitive types in an otherwise Object-centric language is already a pure speed/efficiency measure.
  • Sebastian S
    Sebastian S almost 9 years
    Don't forget the memory footprint. Especially when using big data structures like matrices.
  • DTH
    DTH almost 9 years
    yeah .. back in the old days when memory was scarce, you would always evaluate which datatype to use. It is still very important when it comes to embedded programming, where memory is limited...
  • Robert Tossly
    Robert Tossly almost 9 years
    I'm sorry, but I do not recall stating that speed/efficiency is not enough of benefit. Please explain, Thilo.
  • Jordi Castilla
    Jordi Castilla almost 9 years
    @RobertTossly you're with your mind in little apps runned by big processors/ram memory... that's not real life.... if you start programming you will get bigger and bigger apps with obsolete machines and you will remember this question
  • gprathour
    gprathour almost 9 years
    @JordiCastilla I din't understand your point. Can you please elaborate?
  • Jordi Castilla
    Jordi Castilla almost 9 years
    @RobertTossly check last update, code clarity is also a great benefit that will make your mind run faster when reading code
  • Jordi Castilla
    Jordi Castilla almost 9 years
    oh no, my fault... byte uses 7 bits to store number and 1 to store signed... just from 128 to -127... you're right!!!
  • Robert Tossly
    Robert Tossly almost 9 years
    Thank you for clearing that up for me, Jordi Castilla.
  • Solomon Slow
    Solomon Slow almost 9 years
    Be careful! price may print with decimals, but it is not stored with decimals. It's stored in binary, and most of the values that can be exactly represented with a finite number of decimal digits can not be exactly represented by a double. For example, there is a double that is exactly equal to 0.25, but there is no double that is exactly equal to 0.2. Most experienced developers avoid the use of double for monetary values.
  • LegendLength
    LegendLength about 7 years
    But wouldn't the processor have to store each byte in a separate 64 bit memory area though? I thought that's how intel cpus worked anyway. Otherwise you have to do bitwise or operations if you want them packed tight?