Java 10 var: Difference between revisions
Line 6: | Line 6: | ||
The feature behind the Java 10 new keyword '''var''' is called local variable type inference. | The feature behind the Java 10 new keyword '''var''' is called local variable type inference. | ||
=Details= | |||
The <tt>var</tt> inference algorithm looks only at the expression being assigned to the variable in order to deduce the type. | |||
=var and Code Readability= | =var and Code Readability= |
Revision as of 16:10, 25 May 2018
Internal
Overview
The feature behind the Java 10 new keyword var is called local variable type inference.
Details
The var inference algorithm looks only at the expression being assigned to the variable in order to deduce the type.
var and Code Readability
Type inference reduces the amount of time it takes to write Java code, but in some cases does not necessarily improve its readability. Some say that developers spend much more time reading source coding than writing it, so probably the amount of time it takes to write the code should be optimized in favor of readability. This is an example where var does not improve readability:
var removes the reader ability to guess about the code's intent sim[ply from the type of the variable.
However, there may be cases when var actually improves readability by eliminating obviously redundant type declaration in a very local context. Logically, this is similar to naming a variable "i" instead of "internalProcessId" in a short loop. This is an example where var improves readability and it comes with an additional, not immediately obvious, advantage.