a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 編程 > C > 正文

C語言實現時間戳轉日期的算法(推薦)

2020-01-26 14:33:14
字體:
來源:轉載
供稿:網友

1、算法

時間是有周期規律的,4年一個周期(平年、平年、平年、閏年)共計1461天。Windows上C庫函數time(NULL)返回的是從1970年1月1日以來的毫秒數,我們最后算出來的年數一定要加上這個基數1970。總的天數除以1461就可以知道經歷了多少個周期;總的天數對1461取余數就可以知道剩余的不足一個周期的天數,對這個余數進行判斷也就可以得到月份和日了。

當然了,C語言庫函數:localtime就可以獲得一個時間戳對應的具體日期了,這里 主要說的是實現的一種算法。

2、C語言代碼實現

int nTime = time(NULL);//得到當前系統時間int nDays = nTime/DAYMS + 1;//time函數獲取的是從1970年以來的毫秒數,因此需要先得到天數int nYear4 = nDays/FOURYEARS;//得到從1970年以來的周期(4年)的次數int nRemain = nDays%FOURYEARS;//得到不足一個周期的天數int nDesYear = 1970 + nYear4*4;int nDesMonth = 0, nDesDay = 0;bool bLeapYear = false;if ( nRemain<365 )//一個周期內,第一年{//平年}else if ( nRemain<(365+365) )//一個周期內,第二年{//平年nDesYear += 1;nRemain -= 365;}else if ( nRemain<(365+365+365) )//一個周期內,第三年{//平年nDesYear += 2;nRemain -= (365+365);}else//一個周期內,第四年,這一年是閏年{//潤年nDesYear += 3;nRemain -= (365+365+365);bLeapYear = true;}GetMonthAndDay(nRemain, nDesMonth, nDesDay, bLeapYear);

計算月份和日期的函數:

static const int MON1[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};	//平年static const int MON2[12] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};	//閏年static const int FOURYEARS = (366 + 365 +365 +365);	//每個四年的總天數static const int DAYMS = 24*3600;	//每天的毫秒數void GetMonthAndDay(int nDays, int& nMonth, int& nDay, bool IsLeapYear){	int *pMonths = IsLeapYear?MON2:MON1;	//循環減去12個月中每個月的天數,直到剩余天數小于等于0,就找到了對應的月份	for ( int i=0; i<12; ++i )	{		int nTemp = nDays - pMonths[i];		if ( nTemp<=0 )		{			nMonth = i+1;			if ( nTemp == 0 )//表示剛好是這個月的最后一天,那么天數就是這個月的總天數了				nDay = pMonths[i];			else				nDay = nDays;			break;		}		nDays = nTemp;	}}

3、附上C語言庫函數的實現

<pre name="code" class="cpp">/****errno_t _gmtime32_s(ptm, timp) - convert *timp to a structure (UTC)**Purpose:*    Converts the calendar time value, in 32 bit internal format, to*    broken-down time (tm structure) with the corresponding UTC time.**Entry:*    const time_t *timp - pointer to time_t value to convert**Exit:*    errno_t = 0 success* tm members filled-in*    errno_t = non zero* tm members initialized to -1 if ptm != NULL**Exceptions:********************************************************************************/errno_t __cdecl _gmtime32_s (struct tm *ptm,const __time32_t *timp){__time32_t caltim;/* = *timp; *//* calendar time to convert */int islpyr = 0; /* is-current-year-a-leap-year flag */REG1 int tmptim;REG3 int *mdays;/* pointer to days or lpdays */struct tm *ptb = ptm;_VALIDATE_RETURN_ERRCODE( ( ptm != NULL ), EINVAL )memset( ptm, 0xff, sizeof( struct tm ) );_VALIDATE_RETURN_ERRCODE( ( timp != NULL ), EINVAL )caltim = *timp;_VALIDATE_RETURN_ERRCODE_NOEXC( ( caltim >= _MIN_LOCAL_TIME ), EINVAL )/* * Determine years since 1970. First, identify the four-year interval * since this makes handling leap-years easy (note that 2000 IS a * leap year and 2100 is out-of-range). */tmptim = (int)(caltim / _FOUR_YEAR_SEC);caltim -= ((__time32_t)tmptim * _FOUR_YEAR_SEC);/* * Determine which year of the interval */tmptim = (tmptim * 4) + 70; /* 1970, 1974, 1978,...,etc. */if ( caltim >= _YEAR_SEC ) {  tmptim++;    /* 1971, 1975, 1979,...,etc. */  caltim -= _YEAR_SEC;  if ( caltim >= _YEAR_SEC ) {tmptim++;  /* 1972, 1976, 1980,...,etc. */caltim -= _YEAR_SEC;/* * Note, it takes 366 days-worth of seconds to get past a leap * year. */if ( caltim >= (_YEAR_SEC + _DAY_SEC) ) {tmptim++;  /* 1973, 1977, 1981,...,etc. */caltim -= (_YEAR_SEC + _DAY_SEC);}else {/* * In a leap year after all, set the flag. */islpyr++;}  }}/* * tmptim now holds the value for tm_year. caltim now holds the * number of elapsed seconds since the beginning of that year. */ptb->tm_year = tmptim;/* * Determine days since January 1 (0 - 365). This is the tm_yday value. * Leave caltim with number of elapsed seconds in that day. */ptb->tm_yday = (int)(caltim / _DAY_SEC);caltim -= (__time32_t)(ptb->tm_yday) * _DAY_SEC;/* * Determine months since January (0 - 11) and day of month (1 - 31) */if ( islpyr )  mdays = _lpdays;else  mdays = _days;for ( tmptim = 1 ; mdays[tmptim] < ptb->tm_yday ; tmptim++ ) ;ptb->tm_mon = --tmptim;ptb->tm_mday = ptb->tm_yday - mdays[tmptim];/* * Determine days since Sunday (0 - 6) */ptb->tm_wday = ((int)(*timp / _DAY_SEC) + _BASE_DOW) % 7;/* * Determine hours since midnight (0 - 23), minutes after the hour * (0 - 59), and seconds after the minute (0 - 59). */ptb->tm_hour = (int)(caltim / 3600);caltim -= (__time32_t)ptb->tm_hour * 3600L;ptb->tm_min = (int)(caltim / 60);ptb->tm_sec = (int)(caltim - (ptb->tm_min) * 60);ptb->tm_isdst = 0;return 0;}

以上這篇C語言實現時間戳轉日期的算法(推薦)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 黄色成人在线 | 国产亚洲精品久久久久久青梅 | 日本精品一区二区三区视频 | 日韩av一区二区在线 | 黄色一级电影 | 日韩在线视频一区 | 亚洲视频免费网站 | 少妇精品久久久久久久久久 | 成人在线免费观看 | 国内精品亚洲 | 操久久| 男女国产网站 | 久久机热| av观看免费 | 日本黄色影片在线观看 | 羞羞视频网站免费看 | 国产一区二区三区四区在线观看 | 综合久久国产九一剧情麻豆 | 得得啪在线视频 | 伊人日韩 | а天堂中文最新一区二区三区 | 久久精品免费一区二区三区 | 在线天堂av | 午夜鞭打vk视频 | 日韩一| 日韩日日夜夜 | 国产精品乱码一区二区三区 | 99精品在线观看 | 国产视频一区二区在线 | 日本色一区 | 欧美6一10sex性hd | 在线亚洲精品 | 国产高清av在线一区二区三区 | 91久久精品一区 | 亚洲成人在线视频观看 | 欧美在线观看一区 | 亚洲视频中文字幕 | 国产精品视频播放 | 一区二区三区日韩 | 一区二区三区四区精品 | 久在线观看 |