数组必需但String Found错误

时间:2016-05-08 19:54:02

标签: arrays string initialization

for(int x=0;x<n;x++){
BT[x]=0;
WT[x]=0;
JB[x]=0; 
s1[x]=" ";
s2[x]=" ";
}  

我无法初始化字符串s1和s2它给了我错误数组必需但发现字符串错误。

int n,BT[],WT[],JB[];
String s1[];
String s2[];
String s=JOptionPane.showInputDialog("Enter no of process");
//System.out.println("Enter no of process");
n=Integer.parseInt(s);//sc.nextInt();
BT=new int[n+1];
WT=new int[n+1];
JB=new int[n+1];
s1=new String[n+1];
s2=new String[n+1];

这是设置s1和s2

的数组大小的代码

1 个答案:

答案 0 :(得分:0)

修正了它!字符串没有传递给下面的类。愚蠢的错误