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.
我在ADTAndroid中有这段代码
ADT
private Titular [] datos = new Titular[] {};
如何从 中添加另一个元素TextEdit?
TextEdit
在 Java 中,实例化后无法更改 Array 的大小。您将不得不在另一种收集类型中收集您的数据。例如,看看这个答案。
使用 java.util.arraylist 而不是使用对象数组太简短