首頁 >後端開發 >C++ >如何從ArrayList中隨機選擇並顯示一個元素?

如何從ArrayList中隨機選擇並顯示一個元素?

DDD
DDD原創
2025-01-19 14:42:11398瀏覽

How Can I Randomly Select and Display an Element from an ArrayList?

隨機存取與顯示清單項目

本指南示範如何從 ArrayList 中選擇並顯示隨機字串以回應按鈕點擊。 請依照以下步驟操作:

  1. 建立隨機數產生器:
<code>static Random rnd = new Random();</code>
  1. 產生隨機索引:
<code>int randomIndex = rnd.Next(list.Count);</code>
  1. 擷取字串:
<code>string selectedString = list[randomIndex];</code>
  1. 顯示結果:
<code>MessageBox.Show(selectedString);</code>

此方法可確保從 ArrayList 中檢索隨機字串並將其顯示在訊息框中。

以上是如何從ArrayList中隨機選擇並顯示一個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn