When I specify a number to be a long
with a constant value 400
, is there any difference between using 400L
and 400l
?
Does it have some relationship to the wrapper type? Is L
used to get a wrapper Long
and l
for the primitive data type long
?