Building the Right Environment to Support AI, Machine Learning and Deep Learning
Watch→
Starting with JDK 9, we can create an immutable list via the suite of List#of(...) methods. For example, an immutable list of 3 elements can be created as follows:
List#of(...)
import java.util.List; ... List names = List.of("Mike", "Doru", "Alin");