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


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


在這裏,我們將了解 TimeSpan 結構的 Equals() 方法。此方法用於將指定的引用與當前的引用進行比較。如果當前對象引用等於指定的對象引用,則返回 true,否則返回 false。

用法:

bool TimeSpan.Eqauls(TimeSpan Obj);

參數:

  • Obj:要與當前對象的引用進行比較的對象引用。

返回值:

此方法返回 bool 值,如果引用相等則返回 true,否則返回 false。

程序:

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

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);
        TimeSpan timespan3 = new TimeSpan(2, 2, 10, 0);
     
        bool ret = false;

        ret = timespan1.Equals(timespan2);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan2 are equal");
        else
            Console.WriteLine("timespan1 and timespan2 are not equal");

        ret = timespan1.Equals(timespan3);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan3 are equal");
        else
            Console.WriteLine("timespan1 and timespan3 are not equal");

        ret = timespan1.Equals(timespan1);
        if (ret == true)
            Console.WriteLine("timespan1 and timespan1 are equal");
        else
            Console.WriteLine("timespan1 and timespan1 are not equal");
    }
}

輸出:

timespan1 and timespan2 are not equal
timespan1 and timespan3 are not equal
timespan1 and timespan1 are equal
Press any key to continue . . .



相關用法


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