0
is there a generic variabels in solo learn(java)
if there is can someone explain to me how to use it
1 Respuesta
+ 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.