这个问题在这里已有答案:
这真让我抓狂!我搜索了整个代码,似乎无法解决这个问题。这是我的代码:
class Subtarefas {
public static void resolve (int flag, int na, Aeroporto a[], int nv, Voo v[]) {
switch(flag) {
//------------------------------------------------------------------
case 3: {//Incompleto
String mat[][] = new String [na][2];
int count=0;
int bigcount=0;
int indice=0;
int np=0;
for (int i=0; i<na; i++) {
if ( indexOf(np, mat, a[i].nomecidade, a[i].nomepais)== -1 ) {
mat[np][0]=a[i].nomecidade;
mat[np][1]=a[i].nomepais;
np++;
}
}
for (int i=0; i<np; i++) {
count=0;
for (int j=0; j<np; j++) {
if (mat[i][1].equals(mat[j][1])) count++;
}
if (count>bigcount) {bigcount=count; indice=i;}
}
System.out.println(mat[indice][1] + " " + bigcount);
}
//------------------------------------------------------------------
case 4: {//Feito
String mat1[][] = new String [nv][2];
int count=0;
int bigcount=0;
int indice=0;
for (int i=0; i<nv; i++) {
for (int j=0; j<na; j++) {
if (v[i].origem==a[j].cod) mat1[i][0]=a[j].nomepais;
if (v[i].destino==a[j].cod) mat1[i][1]=a[j].nomepais;
}
}
for (int i=0; i<na; i++) {
count=0;
for (int j=0; j<nv; j++) {
if (a[i].nomepais.equals(mat1[j][0])) {
if (mat1[j][0].equals(mat1[j][1])) count++;
}
}
if (count>bigcount) {bigcount=count; indice=i;}
else if (count==bigcount) {
int result = a[i].nomepais.compareTo(a[indice].nomepais);
if (result<0) {bigcount=count; indice=i;}
}
}
System.out.println(a[indice].nomepais + " " + bigcount);
}
//------------------------------------------------------------------
default: break;
}
}
所以基本上我找不到这里的错误,我无法过滤类型{}括号。这里有一些bug,因为当我使用case 3时我得到两个输出,并且假设只给我1个(在这种情况下我只有1个System.out.println)。
当我使用案例3时,我发现它也经历了案例4.这不应该发生!我该怎么办?
另一个选择是可能有一个开口支架{没有关闭一个}。但我找不到它!
你能帮助我吗?
谢谢。
因为每个案件后需要break;
以避免执行其余的案件,read through switch case
你可以试试 :
switch(flag) {
case 3: //Feito
// your code;
break; // This makes it stop the switch
case 4: //Feito
// your code;
break; // put break here if more case follows
}