关于java:为什么int answer = generator.nextInt(10)+ 1; 只产生1到10之间的数字?

Why does int answer = generator.nextInt(10) + 1; only produce numbers between 1 and 10?

我不明白为什么它不会产生超过11。

这是我的测试代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.Random;

public class randomNumberTest
{
    public static void main(String[] args)
    {
         Random rn = new Random();
         //tests random number generator (between 1(inc) and 10(excl))
         for(int i =0; i < 100; i++)
         {
             int answer = rn.nextInt(10) + 1;
             System.out.println(answer);
         }
    }
}


阅读Javadoc。 rn.nextInt(10)生成0到9之间的数字。添加1会给出1到10之间的范围。

Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive)