0
Can any one tell me what is static typing?
1 RĂ©ponse
+ 4
A language is statically typed if the type of a variable is known at compile time. You must specify what type each variable is.
The main advantage here is that all kinds of checking can be done by the compiler, and therefore problems are caught at a very early stage.