这是相关的代码片段:
public static Rand searchCount (int[] x) { int a ; int b ; int c ; int d ; int f ; int g ; int h ; int i ; int j ; Rand countA = new Rand () ; for (int l= 0; l<x.length; l++) { if (x[l] = 0) a++ ; else if (x[l] = 1) b++ ; } } return countA ; }
编译时收到此错误消息:
Rand.java:77: illegal start of type return countA ; ^
这里出了什么问题?这个错误信息是什么意思?
解决方法
在return语句之前,你有一个错位的结束括号.