Types

This lesson discusses the types in the Java language.

We'll cover the following...

Question # 1

What does it mean for Java to be statically typed language?

Dynamically-typed languages perform type checking at runtime, while statically typed languages perform type checking at compile time. Scripts written in dynamically-typed languages (like Groovy or Javascript) can compile even if they contain errors that will prevent the script from running ...