此方法用於返回一個新的DateTime,它將指定的小時數添加到此實例的值。
用法:
public DateTime AddHours (double value);
在此,值是整小時數和小數小時數。值參數可以為負或正。
返回值:此方法返回一個對象,該對象的值是此實例表示的日期和時間與value表示的小時數之和。
異常:如果生成的DateTime小於MinValue或大於MaxValue,則此方法將提供ArgumentOutOfRangeException。
以下示例程序旨在說明DateTime.AddDays(Double)方法的用法:
示例1:
// C# program to demonstrate the
// DateTime.AddHours(Double) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of DateTime
DateTime date1 = new DateTime(2010, 1,
1, 4, 0, 15);
// adding the 5.50 hours
// using AddHours() method;
DateTime date2 = date1.AddHours(5.50);
// Display the date1
Console.WriteLine("DateTime before operation:"+
" {0:y} {0:dd}, {0:t}", date1);
// Display the date2
Console.WriteLine("\nDateTime after operation: "+
"{0:y} {0:dd}, {0:t}", date2);
}
catch (ArgumentOutOfRangeException e)
{
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
DateTime before operation: 2010 January 01, 04:00 DateTime after operation: 2010 January 01, 09:30
示例2:對於ArgumentOutOfRangeException
// C# program to demonstrate the
// DateTime.AddHours(Double) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of DateTime
// and initialize with MinValue
DateTime date1 = DateTime.MaxValue;
// Display the date1
Console.WriteLine("DateTime before operation: "+
"{0:y} {0:dd}, {0:t}", date1);
// adding the TimeSpan of 5 days
// using AddHours() method;
DateTime date2 = date1.AddHours(5);
// Display the date2
System.Console.WriteLine("\nDateTime after operation:"+
" {0:y} {0:dd}, {0:t}", date2);
}
catch (ArgumentOutOfRangeException e)
{
Console.WriteLine("\nThe resulting DateTime is "+
"greater than the DateTime.MaxValue ");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
DateTime before operation: 9999 December 31, 23:59 The resulting DateTime is greater than the DateTime.MaxValue Exception Thrown: System.ArgumentOutOfRangeException
注意:
- 此方法不會更改此DateTime的值。而是返回一個新的DateTime,其值是此操作的結果。
- 值的小數部分是一分鍾的小數部分。例如,7.5等於7分鍾,30秒,0毫秒和0個滴答。
- value參數四舍五入到最接近的毫秒數。
參考:
相關用法
- C# Queue.Contains()用法及代碼示例
- C# Random.Next()用法及代碼示例
- C# Uri.ToString()用法及代碼示例
- C# Uri.FromHex()用法及代碼示例
- C# DateTime.Add()用法及代碼示例
- C# Uri.IsWellFormedOriginalString()用法及代碼示例
- C# TimeSpan.Add()用法及代碼示例
- C# Uri.GetHashCode()用法及代碼示例
- C# Uri.IsHexDigit()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 DateTime.AddHours() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。