当前位置: 代码迷 >> 综合 >> vs2019,rand()函数
  详细解决方案

vs2019,rand()函数

热度:53   发布时间:2024-01-16 02:02:13.0

只使用的rand(),没有调用srand()

进入rand()的汇编代码

call 79F0FEA0 ;
调用一个函数,返回一个地址,保存在eax中

mov dword ptr [ebp-4],eax
;将eax的值保存在 栈 ebp - 4 的地方

mov eax,dword ptr [ebp-4]
;这是废话吧

imul ecx,dword ptr [eax+14h],343FDh
;eax + 0x14 这里查看内存,值为1,为什么需要偏移,而不是直接把准确地址传过来, ecx = 0
; ecx = ecx + 1 * 214013

add ecx,269EC3h
; ecx = 214013 + 2531011

mov dword ptr [ebp-8],ecx
;保存ecx 在ebp-8

mov edx,dword ptr [ebp-4]
;edx = 原来eax保存的地址

mov eax,dword ptr [ebp-8]
;eax = ecx

mov dword ptr [edx+14h],eax
;替换原来的值(也就是种子数)

mov eax,dword ptr [ebp-8]
;eax没变 为什么需要重新赋值

shr eax,10h
;eax = eax >> 16

and eax,7FFFh
;eax = eax & 0x7fff

总结:rand()的返回值

start = (start *214013 + 2531011)
ret = (start >> 16) & 0x7FFF

0 ≤ r e t ≤ 0 \leq ret \leq 0ret 0x7FFF
伪随机
调用srand()的原因是 改变 start(start 默认为1), 使得每次启动返回值不同

214013 = 12589 * 17
2531011 = 21269 * 17* 7
这些数字 有什么特殊的吗

  相关解决方案