https://blog.csdn.net/shaokao60/article/details/75633725

String数组容量固定,ArrayList容量不固定

String[] 数组的大小是固定的数据结构,ArrayList的大小是动态增加的数据结构,LinkedList是基于链表的数据结构

String[] 数组:最高效;但是其容量固定且无法动态改变;

ArrayList:容量可动态增长;但牺牲效率;