Java 错误:表达式的非法启动
2022-09-02 20:32:52
我基本上是在完善,完成并尝试从Java初学者的参考书中编译测试代码。目标是创建一个猜谜游戏,其中目标位于3个连续的单元格中(我持有数组中的位置),并且用户猜测单元格No。逐个细胞地破坏目标细胞。
我在这里查看了六个关于相同错误的帖子,但我无法弄清楚出了什么问题。
这是我的错误:
test.java:5: error: illegal start of expression
public int[] locations={1,2,3};
^
1 error
我的代码是:
public class test{
public static void main(String[] args){
test dot=new test();
public int[] locations={1,2,3};
dot.setLocationCells(locations);
String userGuess="2";
String result = dot.checkYourself(userGuess);
String testResult="failed";
if(result.equals("hit")){
testResult="passed";
}
System.out.println(testResult);
}
public String checkYourself(String stringGuess){
int guess=Integer.parseInt(stringGuess);
String result="miss";
int numOfHits=0;
for(int cell:locations){
if(guess==cell){
result="hit";
numOfHits++;
break;
}
}
if(numOfHits==locations.length){
result="kill";
}
System.out.println(result);
return result;
}
public void setLocationCells( int[] locations){
int[] locns;
locns=locations;
}
}