關於時間處理的相關類

2021-08-03 12:28:54 字數 2675 閱讀 1646

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace inte***cebll

/// /// 得到本週最後一天(以星期天為最後一天)

///

///

///

public static datetime getweeklastdaysun(datetime datetime)

/// /// 獲得季度值。

///

/// 月份

///

public static int getseason(int month)

/// /// 獲得季度名稱。

///

/// 月份

///

public static string getseasonname(int month)

/// /// 根據月份獲取本月分所在季節的首月及末月

///

/// 當前月份

/// 首月

/// 末月

/// 當前月份所屬的季度

public static string getseasonmonth(string month, ref string bmonth, ref string emonth)

return season;

}/// /// 獲取該年中是第幾周

///

/// 日期

///

public static int weekofyear(datetime day)

int l = convert.toint32(day.dayofyear);//得到當天是該年的第幾天

l = l - (7 - k + 1);

if (l <= 0)

else

else

}return weeknum;

}/// /// 取得年唯一名稱

///

///

///

public static string getyearuniquename(int year)

]", year);

}/// /// 取得季唯一名稱

///

///

///

///

public static string getquarteruniquename(int year, int month)

]&", year, quarter);

}/// /// 取得月唯一名稱

///

///

///

///

public static string getmonthuniquename(int year, int month)

]&&", year, quarter, mon);

} /// /// 取得年唯一名稱

///

///

///

public static string getyearuniquename(string year)

]", year);

}/// /// 取得季唯一名稱

///

///

///

///

public static string getquarteruniquename(string year, string month)

]", year + quarter);

}/// /// 取得月唯一名稱

///

///

///

///

public static string getmonthuniquename(string yearmonth)

]", yearmonth);

} /// /// 取得年唯一名稱

///

/// 維度名稱

/// 年

///

public static string getyearuniquename(string name, string year)

].[年季月].[年].&", year, name);

}/// /// 取得季唯一名稱

///

///

/// 維度名稱

///

///

public static string getquarteruniquename(string name, string year, string month)

].[年季月].[季].&", year + quarter, name);

}/// /// 取得月唯一名稱

///

/// 維度名稱

///

///

///

public static string getmonthuniquename(string name, string yearmonth)

].[年季月].[月].&", yearmonth, name);}}

}

日期時間處理相關工具類

kpdatetool.h kpdatetool created by 劉鯤鵬 on 2018 2 28.日期時間處理相關工具類 import inte ce kpdatetool nsobject 獲取當前時間的時間戳 nstimeinterval nstimeinterval currenttim...

時間處理類

時間計算類 public class calculatetime if m 2 int week d 2 m 3 m 1 5 y y 4 y 100 y 400 7 1 return week 返回該週星期日的日期。當前時間 public static datetime getdateofsunda...

js時間相關處理

方法定義 gettime 方法可返回距 1970 年 1 月 1 日之間的毫秒數。通常我們計算時間差都是通過獲取兩個時間資料,然後分別使用gettime 方法返回與固定的1970 年 1 月 1 日的時間差,通過對返回毫秒數的差,換算成時間單位,得出兩個時間的時間差。首先你會有一串初始的時間資料,然...