A group of objects can be organized into arrays or collections. Arrays are nice because you can statically initialize them, but collections have far more functionality. Using this tip you can have your array and iterate it too!
In your class, create your statically initialized array as always:
public static String [] primeColorsArray = { "red", "blue", "green" };
And on the next line create a List, using the Arrays.asList() method to convert the static array.
public static List primeColorsList = Arrays.asList(primeColorsArray);
Voila!
The result is more concise and elegant that calling the List.add() method over and over again.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























