Skip to content

Commit

Permalink
docs: 提示学习 C++ 随机数而不是 C 随机数
Browse files Browse the repository at this point in the history
  • Loading branch information
FeignClaims authored Oct 5, 2024
1 parent 9be865f commit cc0d8fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion faq/generate_random_number/main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

通常我们生成的随机数并不是真正的随机数, 而是基于一个种子 (seed), 以一定算法生成的伪随机数 (pseudo-random number). 这意味着 **如果使用相同的种子和算法, 将会生成一模一样的数.**

.. hint::

更建议学习 :ref:`C++随机数`, 它更直接; 不过 Visual Studio 2010 不支持.

.. _C随机数:

========================================================================================================================
Expand Down Expand Up @@ -126,4 +130,4 @@ C++11 随机数

.. hint::

更多随机数生成器和分布 (正态分布、泊松分布、柯西分布等) 见于 `cppreference: 随机数分布`_.
更多随机数生成器和分布 (正态分布、泊松分布、柯西分布等) 见于 `cppreference: 随机数分布`_.

0 comments on commit cc0d8fc

Please sign in to comment.