JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

Program: How to change Random class seed value?


Description:

Some times we need to generate same random number sequence everytime we call the sequence generator method on every call. We cannot achieve this if we use simple Random() class constructor. We need to pass seed to the Random() constructor to generate same random sequence. You can change the seed by calling setSeed() method. Each time you pass the same seed, you will get same random sequence. You can notice this with the below example.


Code:
package com.java2novice.random;

import java.util.Random;

public class MyRandomSeedChange {

	public static void main(String a[]){
		Random rnd = new Random(40);
		for(int i=0;i<5;i++){
			System.out.println(rnd.nextInt(100));
		}
		System.out.println("Changing seed to change to sequence");
		rnd.setSeed(45);
		for(int i=0;i<5;i++){
			System.out.println(rnd.nextInt(100));
		}
		System.out.println("Changing seed to change to sequence");
		rnd.setSeed(50);
		for(int i=0;i<5;i++){
			System.out.println(rnd.nextInt(100));
		}
		System.out.println("Setting seed 40 to produce the previous sequence");
		rnd.setSeed(40);
		for(int i=0;i<5;i++){
			System.out.println(rnd.nextInt(100));
		}
	}
}

Output:
82
39
37
63
96
Changing seed to change to sequence
9
31
31
40
87
Changing seed to change to sequence
17
88
93
12
51
Setting seed 40 to produce the previous sequence
82
39
37
63
96
<< Previous Program | Next Program >>

List of Random class sample programs:

  1. Basic random number generator.
  2. How to generate random numbers in the given range?
  3. How to generate same random sequence everytime?
  4. How to change Random class seed value?
  5. How to create random string with random characters?
Knowledge Centre
Default value of a local variables?
The local variables are not initialized to any default values. We should not use local variables with out initialization. Even the java compiler throws error.
Famous Quotations
When I do good, I feel good; when I do bad, I feel bad, and that is my religion.
-- Abraham Lincoln

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.