這段代碼有什麼問題?這就是所謂的四組,似乎總是隻有兩個組合風:在vb.net中隨機化()沒有正確隨機化
Public Function GetRand() As String
Randomize()
Dim r As Integer = CInt(Rnd() * 3)
Select Case r
Case 0
Return str1
Case 1
Return str2
Case 2
Return str3
Case 3
Return str4
Case Else
Return str1
End Select
End Function
它返回隨機字符串,但似乎在非按隨機順序退呢?
這個解決方案工作,聲明它爲'Static'解決它。 – Cyclone 2010-08-31 19:01:56