首頁  >  問答  >  主體

如何在c++获取指定天数如(2015-04-04)的struct tm?

比较复杂的也有想到 可是真的太复杂 结构体中每个变量都要计算 那有没有什么简便的方法呢?

高洛峰高洛峰2764 天前577

全部回覆(2)我來回復

  • 怪我咯

    怪我咯2017-04-17 13:00:58

    只有自己建置structclass吧,可以搜搜看看有沒有第三方的函式庫,不像Java,有比較豐富的Date型。

    回覆
    0
  • 迷茫

    迷茫2017-04-17 13:00:58

    你在說mktime麼?

    #include <stdio.h>
    #include <time.h>
     
    int main(void)
    {
        struct tm tm = *localtime(&(time_t){time(NULL)});
        printf("Today is           %s", asctime(&tm));
        tm.tm_mon -= 100;  
        mktime(&tm);
        printf("100 months ago was %s", asctime(&tm));
    }

    輸出:

    Today is Sun Oct 4 19:11:45 2015
    100 months ago was Mon Jun 4 19:11:45 2007

    回覆
    0
  • 取消回覆