Created
September 2, 2013 02:34
-
-
Save aliencode/6408772 to your computer and use it in GitHub Desktop.
JAVA随机数
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //1000 - 9999 | |
| Random generator = new Random(); | |
| int id = generator.nextInt(9999) + 1000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment