what one is the faster datatype that holds numbers?
byte
single
integer
long
...
Printable View
what one is the faster datatype that holds numbers?
byte
single
integer
long
...
The order is Long, Integer, Byte, everything else. The Long datatype is 32 bits which matches the CPU. Every other datatype require extra CPU cycles.
Optimizing
It's not a matter of using the fastest data type nareth, its about using the datatype that best suits the number you are trying to use
thats usefull...
no its not. speed is a big matter for what im programming. dont give these comments if you dont know the project.Quote:
Originally Posted by Luke K