I'm just wondering what is the benefit and the purpose of the method asList() in Arrays.
It returns a fixed-size list backed by the specified array, thus we cannot add elements to that list and it will be just like an array (we can't add elements to it). Is there a way to convert a fixed-size list to a not-fixed-size list?
When I try to add elements to fixed-size list it throws UnsupportedOperationException:
Double[] d = {3.0, 4.0, 5.0};
List<Double> myList = Arrays.asList(d);
myList.add(6.0); // here it will throw an exception