An open API service indexing awesome lists of open source software.

https://github.com/g-khan/java10-examples

Java 10 Local Variable Type Inference with Examples
https://github.com/g-khan/java10-examples

Last synced: 8 months ago
JSON representation

Java 10 Local Variable Type Inference with Examples

Awesome Lists containing this project

README

          

**Java 10 Local Variable Type Inference with Examples**

* Java has var style declarations with java 10.
* It allows to declare a local variable without specifying its type.
* The type of variable will be inferred from type of actual object created.

All var examples including with fail cases in this repository.