Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在数组中动态添加元素。大小不固定。我应该使用arraylist还是数组?数据类型相同。我从类型为int的数据库中添加值。那么我应该使用哪种数据类型?如何添加和删除来自数组或数组列表的值?
使用 Generic List 而不是 ArrayList 来避免类型转换的开销。
见样品