is there a generic variabels in solo learn(java) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

is there a generic variabels in solo learn(java)

if there is can someone explain to me how to use it

27th Mar 2019, 4:12 AM
yochay zamir
yochay zamir - avatar
1 Answer
+ 3
Java is statically typed, that means every variable must be declared with a specific type (a primitive type like int or char, or an object) that cannot change later. You may encounter constants which are defined in standard classes, for example Math.PI but they do have a type as well.
27th Mar 2019, 1:37 PM
Tibor Santa
Tibor Santa - avatar