描述
C库函数struct tm *localtime(const time_t *timer)使用所指的时间timer填补tm具有代表相应本地时间的值的结构。的价值timer被分解成结构tm并以当地时区表示。
声明
以下是 localtime() 函数的声明。
struct tm *localtime(const time_t *timer)
参数
timer- 这是指向表示日历时间的 time_t 值的指针。
返回值
该函数返回一个指向tm填充了时间信息的结构。以下是 tm 结构信息 -
struct tm {
int tm_sec; /* seconds, range 0 to 59 */
int tm_min; /* minutes, range 0 to 59 */
int tm_hour; /* hours, range 0 to 23 */
int tm_mday; /* day of the month, range 1 to 31 */
int tm_mon; /* month, range 0 to 11 */
int tm_year; /* The number of years since 1900 */
int tm_wday; /* day of the week, range 0 to 6 */
int tm_yday; /* day in the year, range 0 to 365 */
int tm_isdst; /* daylight saving time */
};
示例
下面的例子展示了 localtime() 函数的用法。
#include <stdio.h>
#include <time.h>
int main () {
time_t rawtime;
struct tm *info;
time( &rawtime );
info = localtime( &rawtime );
printf("Current local time and date:%s", asctime(info));
return(0);
}
让我们编译并运行上面的程序,将产生以下结果 -
Current local time and date:Thu Aug 23 09:12:05 2012
相关用法
- C语言 localeconv()用法及代码示例
- C语言 log()用法及代码示例
- C语言 log10()用法及代码示例
- C语言 longjmp()用法及代码示例
- C语言 linerel()用法及代码示例
- C语言 ldiv()用法及代码示例
- C语言 ldexp()用法及代码示例
- C语言 labs()用法及代码示例
- C语言 lineto()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 scanf()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - localtime()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。