Logo

Programming-Idioms

  • C
  • Ruby

Idiom #70 Use clock as random generator seed

Get the current datetime and provide it as a seed to a random generator. The generator sequence will be different at each run.

Random.new

Don't use time for seeding. Just use the initializer without any arguments.
#include <stdlib.h>
#include <time.h>
srand((unsigned)time(0));
using System;
Random rng = new Random(DateTime.Now.Day);

Random takes an Int as an input; the description is too vague to understand what is meant by "current date time" this implementation only uses the day. See the DateTime Documentation (https://docs.microsoft.com/en-us/dotnet/api/system.datetime?view=netframework-4.8) for more and provide your own implementation.

New implementation...
< >
deleplace