Use the keyword var to declare variables.
public
|
The var keyword allows a variable to be initialized without explicitly declaring its type. The variable’s type is inferred from the type of the data assigned to it.
Java 10 introduced the var
keyword.