[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/cpp/numeric/random/random_device [Back]  [Original]

std::random_device cppreference.com
cppreference.com

std::random_device

cppreference.com

<metanoindex/>

 
C++
(C++20)
(C++20)
(C++11)
(C++20)
/
(C++11)
(C++11)
(C++11)
(C++17)
 
(C++17)
(C++20)
(C++11)
(C++11)
(C++17)
(C++17)
(C++20)
(C++20)
(C++11)
(C++17)
(C++20)
(C++23)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
 
 
 
<tbody> </tbody>
class random_device;
( C++11)
std::random_device . (, ) .
:
std::random_device is a uniformly-distributed integer random number generator, which produces non-deterministic random numbers, if a non-deterministic source (e.g. a hardware device) is available to the implementation.
Google.
. .

-

result_type unsigned int

-

:
Construction
Google.
. .
c
(public -) []
operator=
()
:
the assignment operator is deleted
Google.
. .

(public -)
:
Generation
Google.
. .

(public -) []
:
Characteristics
Google.
. .
:
obtains the entropy estimate for the non-deterministic random number generator
Google.
. .

(public -) []
[static]
:
gets the smallest possible value in the output range
Google.
. .

(public static -) []
[static]

(public static -) []

#include <iostream>
#include <string>
#include <map>
#include <random>
int main()
{
    std::random_device rd;
    std::map<int, int> hist;
    for(int n=0; n<20000; ++n)
        ++hist[rd()%10];
    for(auto p : hist)
        std::cout << p.first << " : " << std::string(p.second/100, '*') << '\n';
}

:

0 : ********************
1 : *******************
2 : ********************
3 : ********************
4 : ********************
5 : *******************
6 : ********************
7 : ********************
8 : *******************
9 : ********************

Web Proxy Viewer  |  New URL  |  Original Page