描述
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。