我正在编写一个程序,其中部分内容如下:
public class Portal {
private String name;
private int[] positions; // positions of "ship"
private static int moves = 0; // moves made by player to sink a ship
public static int shot; // the value of position given by player
private int hits = 0; // number of hits
private int maxSize = 4; // max size of ship (the size will be randomized)
int first; // position of 1st ship block
int size; // real size of ship (randomized in setPortal method)
public void checkIfHit(){
for (int i : positions){
if (i == shot){
System.out.println("Hit confirmed");
hits++;
} else if (hits == positions.length){
System.out.println("Sunk");
} else {
System.out.println("Missed it");
}
}
moves++;
}
public void setPortal(){
size = 1 + (int)Math.random()*maxSize;
for (int i = 0; i < size - 1; i++){
if (i == 0){
positions[i]= 1 + (int)Math.random()*positions.length;
first = positions[i];
System.out.println(positions[i]);
continue;
}
positions[i]= first + 1;
System.out.println(positions[i]);
}
}
}
public class Main{
public static void main(String[] args){
// write your code here
Portal p1 = new Portal();
p1.setPortal();
}
}
代码分为两个Java .class文件。
我正在处理的问题是使用p1.setPortal();
不会在IntelliJ控制台中显示文本。该程序工作,但返回0。
当我将System.out.println
放在除main之外的方法(也在单独的类文件中)时,我在另一个程序中没有这样的问题。
可能是造成这种问题的原因是什么?
答案 0 :(得分:-1)
它应该正确抛出异常,因为你忘了初始化整数数组。 看一下这个主题:Do we need to initialize an array in Java?
对于整数数组,Java的默认值为null。因此,你甚至不会循环低谷。唯一让我感到惊讶的是为什么没有例外......