I want to know if it is safe/advisable to convert from ArrayList to Array?
I have a text file with each line a string:
1236
1233
4566
4568
....
I want to read them into array list and then i convert it to Array. Is it advisable/legal to do that?
thanks
Yes it is safe to convert an
ArrayListto anArray. Whether it is a good idea depends on your intended use. Do you need the operations thatArrayListprovides? If so, keep it anArrayList. Else convert away!outputs