溫馨提示×

C#倒計時程序怎么實(shí)現(xiàn)

c#
小億
233
2024-05-27 17:42:14
欄目: 編程語言

在C#中實(shí)現(xiàn)倒計時程序可以使用Timer類來實(shí)現(xiàn)。下面是一個簡單的示例:

using System;
using System.Timers;

class Program
{
    static int countdown = 10;

    static void Main()
    {
        Timer timer = new Timer(1000); // 創(chuàng)建一個每隔1秒觸發(fā)一次的Timer對象
        timer.Elapsed += Timer_Elapsed; // 綁定Elapsed事件處理方法
        timer.Start(); // 啟動計時器
        Console.ReadLine();
    }

    static void Timer_Elapsed(object sender, ElapsedEventArgs e)
    {
        countdown--;
        Console.WriteLine("倒計時剩余時間: {0}秒", countdown);
        
        if (countdown == 0)
        {
            Console.WriteLine("倒計時結(jié)束");
            ((Timer)sender).Stop(); // 結(jié)束計時器
        }
    }
}

在上面的示例中,我們創(chuàng)建了一個Timer對象,并設(shè)置每隔1秒觸發(fā)一次。在Timer_Elapsed方法中,倒計時減少1秒,并輸出剩余時間。當(dāng)?shù)褂嫊r為0時,輸出倒計時結(jié)束,并停止計時器。您可以根據(jù)需要調(diào)整計時器的間隔和倒計時的初始值。

0