我有一个自定义函数,如下所示
Function abc(Seed As Long)
Static iset As Integer
Static gset As Double
MsgBox Rnd(Seed)
MsgBox Rnd(Seed)
abc = 0
End Function
但是我Rnd(Seed)
从 中得到了两个不同的值MsgBox
。然而,自从我修复了种子后,我期望得到相同的值。
你能帮我了解一下种子是如何运作的吗?rnd()
我有一个自定义函数,如下所示
Function abc(Seed As Long)
Static iset As Integer
Static gset As Double
MsgBox Rnd(Seed)
MsgBox Rnd(Seed)
abc = 0
End Function
但是我Rnd(Seed)
从 中得到了两个不同的值MsgBox
。然而,自从我修复了种子后,我期望得到相同的值。
你能帮我了解一下种子是如何运作的吗?rnd()
这是来自 Excel VBA 帮助
返回值
据此,您需要应用粗体文本。