C/C++斷定傳入的UTC時光能否當天的完成辦法。本站提示廣大學習愛好者:(C/C++斷定傳入的UTC時光能否當天的完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C/C++斷定傳入的UTC時光能否當天的完成辦法正文
這裡先給出一個准確的版本:
#include <iostream>
#include <time.h>
using namespace std;
bool IsInToday(long utc_time){
time_t timeCur = time(NULL);
struct tm curDate = *localtime(&timeCur);
struct tm argsDate = *localtime(&utc_time);
if (argsDate.tm_year == curDate.tm_year &&
argsDate.tm_mon == curDate.tm_mon &&
argsDate.tm_mday == curDate.tm_mday){
return true;
}
return false;
}
std::string GetStringDate(long utc_time){
struct tm *local = localtime(&utc_time);
char strTime[50];
sprintf(strTime,"%*.*d年%*.*d月%*.*d日",
4,4,local->tm_year+1900,
2,2,local->tm_mon+1,
2,2,local->tm_mday);
return strTime;
}
std::string GetStringTime(long utc_time){
struct tm local = *localtime(&utc_time);
char strTime[50];
sprintf(strTime,"%*.*d:%*.*d:%*.*d",
2,2,local.tm_hour,
2,2,local.tm_min,
2,2,local.tm_sec);
return strTime;
}
void ShowTime(long utc_time){
if (IsInToday(utc_time)){
printf("%s\n",GetStringTime(utc_time).c_str());
}else{
printf("%s\n",GetStringDate(utc_time).c_str());
}
}
int main(){
ShowTime(1389998142);
ShowTime(time(NULL));
return 0;
}
在函數中struct tm *localtime(const time_t *);中前往的指針指向的是一個全局變量,假如把函數bool IsInToday(long utc_time);寫成樣,會有甚麼成績呢?
bool IsInToday(long utc_time){
time_t timeCur = time(NULL);
struct tm* curDate = localtime(&timeCur);
struct tm* argsDate = localtime(&utc_time);
if (argsDate->tm_year == curDate->tm_year &&
argsDate->tm_mon == curDate->tm_mon &&
argsDate->tm_mday == curDate->tm_mday){
return true;
}
return false;
}
這裡把curDate和argsDate聲明成了指針。運轉法式就會發明,這個函數前往的老是ture,為何呢?
由於在struct tm* curDate = localtime(&timeCur);中前往的指針指向的是一個全局變量,即curDate也指向這個全局變量。
在struct tm* argsDate = localtime(&utc_time);中前往額指針也指向的這個全局變量,所以argsDate和cur指向的是統一個全局變量,他們的內存區域是統一塊。
在第二次挪用localtime()時,修正了全局變量的值,curDate也隨之轉變,是以curDate == argsDate;所以前往的成果衡等於true。