计算时间间隔

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

应用注册用户名: 密码:
HOHO照片PK分享投票测试礼物开心部落汽车工厂七彩鱼
更多
网页游戏分享热门分享 最新分享 好友的分享 我的分享
如何分享? 问题反馈
不用患得患失的分享
分享


c#如何计算两个日期相差几年几个月?C#日期间隔 c#时间间隔
谢谢snake的提醒。我从新写了一个功能强点的类:

///


/// 计算日期的间隔(静态类)
///

public static class dateTimeDiff
{
///
/// 计算日期间隔
///

/// 要参与计算的其中一个日期字符串
/// 要参与计算的另一个日期字符串
/// 一个表示日期间隔的TimeSpan类型
public static TimeSpan toResult(string d1, string d2)
{
try
{
DateTime date1 = DateTime.Parse(d1);
DateTime date2 = DateTime.Parse(d2);
return toResult(date1, date2);
}
catch
{
throw new Exception("字符串参数不正确!");
}
}
///
/// 计算日期间隔
///

/// 要参与计算的其中一个日期
/// 要参与计算的另一个日期
/// 一个表示日期间隔的TimeSpan类型
public static TimeSpan toResult(DateTime d1, DateTime d2)
{
TimeSpan ts;
if (d1 > d2)
{
ts = d1 - d2;
}
else
{
ts = d2 - d1;
}
return ts;
}

///
/// 计算日期间隔
///

/// 要参与计算的其中一个日期字符串
/// 要参与计算的另一个日期字符串
/// 决定返回值形式的枚举
/// 一个代表年月日的int数组,具体数组长度与枚举参数drf有关
public static int[] toResult(string d1, string d2, diffResultFormat drf)
{
try
{
DateTime date1 = DateTime.Parse(d1);
DateTime date2 = DateTime.Parse(d2);
return toResult(date1, date2, drf);
}
catch
{
throw new Exception("字符串参数不正确!");
}
}
///
/// 计算日期间隔
///

/// 要参与计算的其中一个日期
/// 要参与计算的另一个日期
/// 决定返回值形式的枚举
/// 一个代表年月日的int数组,具体数组长度与枚举参数drf有关
public static int[] toResult(DateTime d1, DateTime d2, diffResultFormat drf)
{
#region 数据初始化
DateTime max;

DateTime min;
int year;
int month;
int tempYear, tempMonth;
if (d1 > d2)
{
max = d1;
min = d2;
}
else
{
max = d2;
min = d1;
}
tempYear = max.Year;
tempMonth = max.Month;
if (max.Month < min.Month)
{
tempYear--;
tempMonth = tempMonth + 12;
}
year = tempYear - min.Year;
month = tempMonth - min.Month;
#endregion
#region 按条件计算
if (drf == diffResultFormat.dd)
{
TimeSpan ts = max - min;
return new int[] { ts.Days };
}
if (drf == diffResultFormat.mm)
{
return new int[] { month + year * 12 };
}
if (drf == diffResultFormat.yy)
{
return new int[] { year };
}
return new int[] { year, month };
#endregion
}
}
///


/// 关于返回值形式的枚举
///

public enum diffResultFormat
{
///
/// 年数和月数
///

yymm,
///
/// 年数
///

yy,
///
/// 月数
///

mm,
///
/// 天数
///

dd,
}


下面我们将使用这个类来计算日期间隔:

string str1 = "2007-12-31";
string str2 = "2009-6-1";

int[] kk = dateTimeDiff.toResult(str1, str2, diffResultFormat.mm);
Console.WriteLine(string.Format("间隔:{0}个月", kk[0]));
//结果显示为:间隔:18个月

DateTime date1 = DateTime.Parse(str1);
DateTime date2 = DateTime.Parse(str2);

int[] kk2 = dateTimeDiff.toResult(date1, date2, diffResultFormat.yymm);
Console.WriteLine(string.Format("间隔:{0}年{1}个月", kk2[0], kk2[1]));
//结果显示为:间隔:1年6个月

也可以用这个类来计算时间间隔:

string str3 = "2009-5-31 1:55:24";
string str4 = "2009-6-1";

int kk3 =dateTimeDiff.toResult(str3, str4).Hours;
Console.WriteLine(string.Format("间隔:{0}个小时", kk3));
//结果显示为:间隔:22个小时


为了您的安全,请只打开来源可靠的网址
打开网站 取消
来自: /%C0%FA%D3%D6/blog/item/09b3ec37d74787390a55a9b6.html
来自:
历又 第一分享:
不用患得患失 时间: 2010-12-23 23:05 评论: 1条 投票: 0次 本贴分享: 1 累计分享: 3 共有0人发表观点
...目前还没有互动观点,输入您的互动观点 不用患得患失的 相关分享:

中OnClientClick与OnClick

int与Int32

sql语句分别按日,按周,按月,按季统计金额 ...

C#DataGridView分页显示代码详解
评论(1)

2010年12月23日 23:06 不用患得患失
学习

学习
帮助中心 | 空间客服 | 投诉中心 | 空间协议 | 联系我们
2006-2011 ? Baidu

相关文档
最新文档