C++C++11C++14C++17C++20Game DevelopmentIntroduction to C++Learn C++Syntax

What Is The mt19937 Random Generator In Modern C++?

What Is The mt19937 Random Generator In Modern C++

Random numbers are one of the most important parts of today’s modern programming technologies. They are used in mathematics, physics, in many engineering fields, and in programming such as generating random data for testing, random maps in levels, random trees on a planet – the list is endless. Since C++11, mt19937 (std::mt19937) is implemented as a random number generator. In this post, we explain what mt19937 is and how we can use it.

What is a random number and a random number generator in C++?

A random number is a number that is randomly chosen in a given range. It is impossible to predict future values based on past or present values and they are uniformly distributed over a defined interval or set.

Mersenne prime is a prime number used in mathematics that is a number of the form Mn = 2n − 1 where the n is an integer. The Mersenne Twister is a pseudorandom number generator where the period length is chosen to be a Mersenne Prime. It was developed by Makoto Matsumoto in 1997.

Since C++11, the Mersenne Twister mathematical number generator is implemented as a random generator number, it is defined in the <random> header as a std::mersenne_twister_engine that is a random number engine based on Mersenne Twister algorithm.

What is the std::mt19937 random number generator in modern C++?

In C we use rand()srand() and in C++ we use std::rand()std::srand(). While they are added to <cstdlib> to make modern C++ compatible, there are more useful and modern random number generators. These are std::mt19937 and std::mt19937_64. The std::mt1993 is a 32-bit Mersenne Twister by Matsumoto and Nishimura in 1998, and std::mt19937_64 is a 64-bit Mersenne Twister by Matsumoto and Nishimura in 2000.

The std::mt19937 is a random number generator defined in the <random> header in C++17 standard and beyond, producing 32-bit pseudo-random numbers by using the Mersenne Twister algorithm with a state size of 19937 bits. This is why it is called mt19937 and there is a 64-bit version called mt19937_64. Both are defined as an instantiation of the mersenne_twister_engine. Now let’s see their definitions.

Since C++11, mt19937 is defined as below,

Since C++11, mt19937_64 is defined as below,

How can we use the random number generator std::mt19937 in modern C++?

Simply we can generate modern random number as shown below.

we can use it like so:

if you want to generate a number in a range you can use modulus operator %.
This is how can we generate random number between zero to n, i.e. 0 to 100.

This is how can we generate random number between two numbers, i.e. 50 to 150,

Is there a simple example to use std::mt19937 in modern C++?

Here is a simple example to use std::mt19937.

Is there a full example of how to use the std::mt19937 in modern C++?

The std::mt19937 and std::mt19937_64 can be initialized with a new seed values (as same as using std::srand()) with the seed() method. Thus, we can generate same random number in same processes. This is useful to generate same randomly generated numbers for the same processes, such as it can be used to generate maps for each level of a game. We can also check min() and max() values of this generator.

Here is a full example including all these above.

The output will be as below.

As you see, we can use seed to generate same random number sequences as in the last 4 lines of the output above.

Here are more examples to generate random numbers in modern C++,

I should note that, personally, I found mt19937 name for this class is hard to remember, I would prefer rand32(), rand64() names for them.

For more details about this feature in C++11 standard, please see these papers; p0205r1

What Is The mt19937 Random Generator In Modern C++ C++ Logo

C++ Builder is the easiest and fastest C and C++ compiler and IDE for building simple or professional applications on the Windows operating system. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial

Free C++Builder Community Edition

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++17Language FeatureLearn C++

How To Use Skia Shader SkSL Shading Language Code in C++ Builder?

Artificial Intelligence TechC++C++17C++20Learn C++

How To Create Simple Generative AI Code In C++

C++C++17Language FeatureLearn C++

How To Use The SVG Image Format With Skia In C++ Builder

C++C++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?