摘要:
Random(); 创造一个新的随机数生成器。 //随机数取值范围:(100) -> [0-100) -> 0~99 //随机数取值万能公式:(max - min + 1) + min; int number = new Random().nextInt(bound:100) + 1; 阅读全文
posted @ 2022-02-23 17:43
颖晨曦
阅读(10)
评论(0)
推荐(0)
摘要:
exit(int status); 终止当前运行的java虚拟机。 阅读全文
posted @ 2022-02-23 16:32
颖晨曦
阅读(21)
评论(0)
推荐(0)