如何在java中的单个数组元素中存储多个字符串?可以动态添加或删除字符串。所以,数组必须是灵活的。我的意思是,如果有一个数组 a[],那么:
a[1] should be able to accommodate "String1", "String2", ....
a[2] should be able to accommodate "String3", "String4", ....
这些字符串可以随时删除,并且可以随时添加其他字符串。什么 java 组件支持这种功能?我是java新手,基础薄弱。希望你能帮忙。谢谢 !