SyntaxFix
Write A Post
Hire A Developer
Questions
🔍
[java] Long vs Integer, long vs int, what to use and when?
Home
Question
Long vs Integer, long vs int, what to use and when?
By default use an
int
, when holding numbers.
If the range of
int
is too small, use a
long
If the range of
long
is too small, use
BigInteger
If you need to handle your numbers as object (for example when putting them into a
Collection
, handling
null
, ...) use
Integer
/
Long
instead
Examples related to
java
•
Under what circumstances can I call findViewById with an Options Menu / Action Bar item?
•
How much should a function trust another function
•
How to implement a simple scenario the OO way
•
Two constructors
•
How do I get some variable from another class in Java?
•
this in equals method
•
How to split a string in two and store it in a field
•
How to do perspective fixing?
•
String index out of range: 4
•
My eclipse won't open, i download the bundle pack it keeps saying error log
Examples related to
types
•
Cannot invoke an expression whose type lacks a call signature
•
How to declare a Fixed length Array in TypeScript
•
Typescript input onchange event.target.value
•
Error: Cannot invoke an expression whose type lacks a call signature
•
Class constructor type in typescript?
•
What is dtype('O'), in pandas?
•
YAML equivalent of array of objects in JSON
•
Converting std::__cxx11::string to std::string
•
Append a tuple to a list - what's the difference between two ways?
•
How to check if type is Boolean
Examples related to
numbers
•
how to display a javascript var in html body
•
How to label scatterplot points by name?
•
Allow 2 decimal places in <input type="number">
•
Why does the html input with type "number" allow the letter 'e' to be entered in the field?
•
Explanation on Integer.MAX_VALUE and Integer.MIN_VALUE to find min and max value in an array
•
Input type "number" won't resize
•
C++ - how to find the length of an integer
•
How to Generate a random number of fixed length using JavaScript?
•
How do you check in python whether a string contains only numbers?
•
Turn a single number into single digits Python