作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我尝试编写一种方法来创建七个字母的机架。似乎我的 for 循环措辞不正确,因此没有产生所需的结果。经过多次尝试,我要么发现所有七个图 block 都出现了相同字母的各种错误。
public static Tile [] makeRack(Tile [] tileBag)
throws FileNotFoundException
{
// create a Tile array called rack that can hold 7 tiles
Tile [] tiles = new Tile[7];
// make a for loop that starts with int k=0 and repeats 7 times
int x = (int)(Math.random()*100);
for(int k = 0; k < 7; k++)
{
char c = getLetter(x);
int val = getValue(c);
tiles[k] = new Tile(c,val);
}
return tiles;
}
最佳答案
您尚未包含所有代码,因此我假设 getLetter()
是从整数到字符的直接转换。
当您在循环外部调用 Math.random()
时,您会得到一个分配给 x
的(单个)随机数。从那时起,x
就没有改变,因此您将得到 7 个相同字母的机架。
要解决此问题,请将 x
的初始化移至 for
循环内。这样,您将调用 Math.random()
7 次,而不是仅仅一次。
关于java - 有人可以帮助我理解为什么我的 for 循环在 Java 中不起作用(对于拼字游戏)吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30429848/
我是一名优秀的程序员,十分优秀!