此方法用于将此实例的值与指定的DateTime值进行比较,并指示此实例是早于,等于还是晚于指定的DateTime值。此方法的重载列表中有两种方法,如下所示:
- CompareTo(DateTime)
- CompareTo(Object)
CompareTo(DateTime)方法
此方法用于将该实例的值与指定的DateTime值进行比较,并返回一个整数,该整数指示此实例是早于,等于还是晚于指定的DateTime值。
用法:
public int CompareTo (DateTime value);
在此,参数值是要与当前实例进行比较的对象。
返回值:此方法返回一个带符号的数字,指示此实例的相对值和value参数。
- 小于零:如果此实例早于value。
- 零:如果此实例与value相同。
- 大于零:如果此实例晚于值。
例:
// C# code to demonstrate
// CompareTo(DateTime) function
using System;
public class GFG {
// Main Method
public static void Main()
{
// Taking two DateTime Objects
DateTime d1 = new DateTime(2018, 12,
31, 16, 0, 0);
DateTime d2 = new DateTime(2018, 12,
31, 20, 0, 0);
// Using the method
int res = d1.CompareTo(d2);
string r;
if (res > 0)
r = "is later than";
else if (res == 0)
r = "is the same time as";
else
r = "is earlier than";
Console.WriteLine("{0} {1} {2}", d1, r, d2);
}
}
输出:
12/31/2018 16:00:00 is earlier than 12/31/2018 20:00:00
CompareTo(Object)方法
此方法用于将实例的值与包含指定的DateTime值的指定对象进行比较,并返回一个整数,该整数指示此实例是早于,等于还是晚于指定的DateTime值。
用法:
public int CompareTo (object value);
在此,参数值是要比较的装箱的对象,或者为null。
返回值:此方法返回一个带符号的数字,指示此实例的相对值和value参数。
- 小于零:如果此实例早于value。
- 零:如果此实例与value相同。
- 大于零:如果此实例晚于值。
异常:如果该值不是DateTime,则此方法将提供ArgumentException。
例:
// C# code to demonstrate
// CompareTo(Object) function
using System;
public class GFG {
// Main Method
public static void Main()
{
// Taking a DateTime Object
DateTime d1 = new DateTime(2018, 12,
31, 16, 0, 0);
// Using the method
// Here, "DateTime.Today" is
// the property of DateTime struct
int res = d1.CompareTo(DateTime.Today);
string r;
if (res > 0)
r = "is later than";
else if (res == 0)
r = "is the same time as";
else
r = "is earlier than";
Console.WriteLine("{0} {1} {2}", d1, r,
DateTime.Today);
}
}
输出:
12/31/2018 16:00:00 is earlier than 01/21/2019 00:00:00
参考:
相关用法
- C# Uri.IsBaseOf(Uri)用法及代码示例
- C# Random.Next()用法及代码示例
- C# Uri.ToString()用法及代码示例
- C# Uri.IsWellFormedOriginalString()用法及代码示例
- C# Uri.GetHashCode()用法及代码示例
- C# Math.Log()用法及代码示例
- C# Uri.FromHex()用法及代码示例
- C# Uri.IsHexDigit()用法及代码示例
- C# Queue.Contains()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 DateTime.CompareTo() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。