English 中文(简体)
如何初始化未知数组长度的多维数组
原标题:How to initialize a multi-dimensional array of unknown array length
  • 时间:2011-05-30 13:02:53
  •  标签:
  • java
  • android

生成大小未知的多维数组时遇到问题。我该怎么修?

问题回答

生成大小未知的多维数组称为锯齿状数组。

例如:

String[][] array = new String[5][];

Java将数组的数组用于多维数组。我认为你必须指定第一个尺寸。否则,请使用列表列表。

ArrayList<ArrayList<String>> list = new ArrayList<ArrayList<String>>();

数组是静态的。ArrayList是动态的。

在创建数组之前,您应该了解数组的大小。在不知道数组大小的情况下创建多维数组是不可能的。

最好使用嵌套的ArrayList或嵌套的Vector

ArrayList<ArrayList<String>> list = new ArrayList<ArrayList<String>>();




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签