调用系统时间

Posted StephenJusky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用系统时间相关的知识,希望对你有一定的参考价值。

VS中编译通过:

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
    printf("This is a test!\n");
    time_t rawtime;
    rawtime = time(NULL);
    struct tm *systime = localtime(&rawtime);
    printf("Time is: %s", asctime(systime));
    system("pause");
}

以上是关于调用系统时间的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段 KOTLIN 中调用意图 [重复]

调用模板化成员函数:帮助我理解另一个 *** 帖子中的代码片段

从片段调用 Google Play 游戏服务

使用意图从另一个片段调用一个片段

onActivityResult 未在 Android API 23 的片段上调用

Android片段生命周期:onResume调用了两次