【发布时间】:2013-11-26 11:59:25
【问题描述】:
我对 java 还很陌生,所以这似乎是一个基本问题。我正在尝试使用随机 java.util 和 nextInt 在用户输入指定的范围内创建一个随机数,然后将其转换为一个字符,然后存储在一个数组中;
gridCells[x][y] = (char)(r.nextInt(numberOfRegions) + 'a');
但是,因为我希望 nextInt 使用用户输入,并且虽然我控制了值的范围,但我猜测错误是因为 nextInt 认为 numberOfRegions 可能为 0 引起的?
// Map Class
import java.util.Random;
public class map
{
// number of grid regions
private int numberOfRegions;
private boolean correctRegions = false
// grid constants
private int xCord = 13; // 13 so the -1 makes 12 for a 12x12 grid
private int yCord = 13;
// initiate grid
private int[][] gridCells = new int[xCord][yCord];
Random r = new Random();
map() { }
// ask for number of regions
public void regions()
{
keyboard qwerty = new keyboard(); // keyboard class
while(correctRegions = false)
{
System.out.print("Please enter the number of regions: ");
numberOfRegions = qwerty.readInt();
if(numberOfRegions < 2) // nothing less then 2 accepted
{
correctRegions = false;
}
else if(numberOfRegions > 4) // nothing greater then 4 accepted
{
correctRegions = false;
}
else
{
correctRegions = true;
}
}
}
// fills the grid with regions
public void populateGrid()
{
for(int x =0; x<gridCells[x].length-1; x++) // -1 to avoid outofboundsexception error
{
for(int y =0; y<gridCells[y].length-1; y++)
{
gridCells[x][y] = (char)(r.nextInt(numberOfRegions) + 'a');
}
}
}
public void showGrid()
{
for(int x=0;x<gridCells[x].length-1; x++)
{
for(int y=0; y<gridCells[x].length-1; y++)
{
System.out.print(gridCells[x][y] + " ");
}
System.out.println();
}
}
}
【问题讨论】:
-
private boolean correctRegions = false;` 有一个额外的 ` 标记,不会编译...
-
这比这里更属于 codereview.stackexchange...
-
由于某种原因没有显示错误(一定是当我将代码添加到帖子中时)它是非法参数异常 n 必须是正错误