📅  最后修改于: 2022-03-11 14:52:44.483000             🧑  作者: Mango
import java.util.concurrent.ThreadLocalRandom;
// nextInt is normally exclusive of the top value,
// so add 1 to make it inclusive
int randomNum = ThreadLocalRandom.current().nextInt(min, max + 1);