Skip to content

Instantly share code, notes, and snippets.

@aliencode
Created September 2, 2013 02:34
Show Gist options
  • Select an option

  • Save aliencode/6408772 to your computer and use it in GitHub Desktop.

Select an option

Save aliencode/6408772 to your computer and use it in GitHub Desktop.
JAVA随机数
//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