我最近在这里问了一个问题,并学习了如何拆分我的阵列。现在我正在处理存储分离的数组。我知道这段代码可能是非常错误的,因为我只是想自己弄清楚。此代码的预期目的是查看在拆分数组(最多 10 个名称和 10 度)后是否可以存储输入。System.out 的目的是查看它们是否正在存储。我不断收到无法找到符号结果的错误。任何帮助表示赞赏。
import java.util.ArrayList;
import java.util.Arrays;
import javax.swing.JOptionPane;
public class PeerTutoring
{
public static void main(String[] args)
{
ArrayList<String> list = new ArrayList<String>();
int a = 0;
int b = 1;
int c = 0;
int d = 1;
for(int i=0;i<20;i++) {
String line;
line = JOptionPane.showInputDialog("Please enter tutor name and their highest earned degree.");
String[] result = line.split("\\s+");
String[] name = new result[a];
String[] degree = new result[b];
a++;
b++;
System.out.println(name[c]);
System.out.println(degree[d]);
c++;
d++;
}
}