java 生成12位随机数,解决The literal 9999999999999 of type int is out of range 问题

Posted 做梦的人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 生成12位随机数,解决The literal 9999999999999 of type int is out of range 问题相关的知识,希望对你有一定的参考价值。

原本想这样产生一个随机数,但是你会看到,只要数字超过了9位数,就会出问题,提示“The literal 1000000000000 of type int is out of range”

解决方式是把数字转换成long型,在数字后面加上L,代表long型

 

以上是关于java 生成12位随机数,解决The literal 9999999999999 of type int is out of range 问题的主要内容,如果未能解决你的问题,请参考以下文章

Java生成随机数(n位长度,字母+数字)

如何在Java程序中写一个方法可随机生成12位数字,且永远不会重复,唯一的。

如何生成随机的五位数字Java [重复]

Tip of the Week #64: Raw String Literals

Tip of the Week #64: Raw String Literals

java随机生成6位随机数 5位随机数 4位随机数