我只需要一个基本的解释。我将创建一些示例代码,也许有人可以帮助我在这方面工作了几个小时,但我只是不明白如何正确使用类与数组之类的东西。我已经阅读了 javadocs 的东西,但我仍然感到困惑。如果有人能告诉我如何解决这个问题,我将不胜感激,因为这意味着我可以应用于我试图解决的更大的问题。
public class main{
int id =0;
double data1 = 0;
double data2 = 0;
double data3 = 0;
public static void main(String[] args){
id++; // do some stuff to the data.
}
public class datastorage{
/*I want to create an array of arrays in this class to store the
hanging values from the main class
e.g. {{1,34.2,34.6,23.1}{2,38.2,33.6,22.6}}
I then want to be able to call each array back to the main to display depending on
which ID I choose. */
}