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程序中写一个方法可随机生成12位数字,且永远不会重复,唯一的。
Tip of the Week #64: Raw String Literals