Arrays: Operations
Let's discuss some operations that can be performed using the Arrays class.
We'll cover the following...
Converting an Array into a List
We can convert an array into a list using the asList()
method. If any changes are made to the resulting list, then changes are propagated to the ...