There is a constant variable as array:
List<String> as = new ArrayList(Arrays.asList("a", "b", "c", "d")); In the process, the elements of the array are added and removed. How to save a modified array when exiting the program?
At the moment when I start the program, the array is initialized in its original form. Which team will save the new elements (āaā, āeā, āzā) to the variable as ?