當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# TimeSpan CompareTo()用法及代碼示例


在這裏,我們將了解 TimeSpan 結構的 CompareTo() 方法。此方法與 Compare() 方法相同,但 Compare() 是靜態方法,而 CompareTo() 是實例方法。這是用於比較 TimeSpan 結構的兩個對象的方法,它返回一個整數值,指示當前對象大於、等於和小於第二個對象。

用法:

int TimeSpan.CompareTo(TimeSpan Obj);

參數:

  • Obj:Object 要與當前對象進行比較。

返回值:

此方法返回一個整數值以指示比較。

程序:

下麵給出了演示使用 TimeSpan 結構的 CompareTo() 方法的源代碼。給定的程序已成功編譯並執行。

using System;

class TimeSpanDemo
{
    //Entry point of Program
    static public void Main()
    {
        //Here we create timespan with day,hour,minutes and seconds
        TimeSpan timespan1 = new TimeSpan(4,2, 20, 0);
        TimeSpan timespan2 = new TimeSpan(2,2, 10, 0);

        int retVal = 0;

        retVal = timespan1.CompareTo(timespan2);

        
        if (retVal > 0)
            Console.WriteLine("timespan1 is greater than timespan2");
        else if(retVal==0)
            Console.WriteLine("timespan1 is equal to timespan2");
        else
            Console.WriteLine("timespan1 is less than timespan2");
    }
}

輸出:

timespan1 is greater than timespan2
Press any key to continue . . .



相關用法


注:本文由純淨天空篩選整理自 C# program to demonstrate the use of CompareTo() method of TimeSpan structure。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。