得到當前時間的幾個函式

2021-05-25 06:45:53 字數 4357 閱讀 2734

asctime(將時間和日期以字串格式表示) 

相關函式  time,ctime,gmtime,localtime

表頭檔案  #include

定義函式  char * asctime(const struct tm * timeptr);

函式說明  asctime()將引數timeptr所指的tm結構中的資訊轉換成真實世界所使用的時間日期表示方法,然後將結果以字串形態返回。此函式已經由時區轉換成當地時間,字串格式為:「wed jun 30 21:49:08 1993/n」

返回值  若再呼叫相關的時間日期函式,此字串可能會被破壞。此函式與ctime不同處在於傳入的引數是不同的結構。

附加說明  返回一字串表示目前當地的時間日期。

範例  #include

main()

執行  sat oct 28 02:10:06 2000

hfutfw

hfutfw123

210.45. 

ctime(將時間和日期以字串格式表示) 

相關函式  time,asctime,gmtime,localtime

表頭檔案  #include

定義函式  char *ctime(const time_t *timep);

函式說明  ctime()將引數timep所指的time_t結構中的資訊轉換成真實世界所使用的時間日期表示方法,然後將結果以字串形態返回。此函式已經由時區轉換成當地時間,字串格式為「wed jun 30 21 :49 :08 1993/n」。若再呼叫相關的時間日期函式,此字串可能會被破壞。

返回值  返回一字串表示目前當地的時間日期。

範例  #include

main()

執行  sat oct 28 10 : 12 : 05 2000

gettimeofday(取得目前的時間) 

相關函式  time,ctime,ftime,settimeofday

表頭檔案  #include

#include

定義函式  int gettimeofday ( struct tim * tv , struct timezone * tz )

函式說明  gettimeofday()會把目前的時間有tv所指的結構返回,當地時區的資訊則放到tz所指的結構中。

tim結構定義為:

struct tim;

timezone 結構定義為:

struct timezone;

上述兩個結構都定義在/usr/include/sys/time.h。tz_dsttime 所代表的狀態如下

dst_none

dst_usa

dst_aust

dst_wet

dst_met

dst_eet

dst_can

dst_gb

dst_rum

dst_tur

dst_austalt

返回值  成功則返回0,失敗返回-1,錯誤**存於errno。附加說明efault指標tv和tz所指的記憶體空間超出訪問許可權。

範例  #include

#include

main()

執行  tv_sec: 974857339

tv_usec:136996

tz_minuteswest:-540

tz_dsttime:0

gmtime(取得目前時間和日期) 

相關函式  time,asctime,ctime,localtime

表頭檔案  #include

定義函式  struct tm*gmtime(const time_t*timep);

函式說明  gmtime()將引數timep 所指的time_t 結構中的資訊轉換成真實世界所使用的時間日期表示方法,然後將結果由結構tm返回。

結構tm的定義為

struct tm

;int tm_sec 代表目前秒數,正常範圍為0-59,但允許至61秒

int tm_min 代表目前分數,範圍0-59

int tm_hour 從午夜算起的時數,範圍為0-23

int tm_mday 目前月份的日數,範圍01-31

int tm_mon 代表目前月份,從一月算起,範圍從0-11

int tm_year 從1900 年算起至今的年數

int tm_wday 一星期的日數,從星期一算起,範圍為0-6

int tm_yday 從今年1月1日算起至今的天數,範圍為0-365

int tm_isdst 日光節約時間的旗標

此函式返回的時間日期未經時區轉換,而是utc時間。

返回值  返回結構tm代表目前utc 時間

範例  #include

main();

time_t timep;

struct tm *p;

time(&timep);

p=gmtime(&timep);

printf(「%d%d%d」,(1900+p->tm_year), (1+p->tm_mon),p->tm_mday);

printf(「%s%d;%d;%d/n」, wday[p->tm_wday], p->tm_hour, p->tm_min, p->tm_sec);

}執行  2000/10/28 sat 8:15:38

localtime(取得當地目前時間和日期) 

相關函式  time, asctime, ctime, gmtime

表頭檔案  #include

定義函式  struct tm *localtime(const time_t * timep);

函式說明  localtime()將引數timep所指的time_t結構中的資訊轉換成真實世界所使用的時間日期表示方法,然後將結果由結構tm返回。結構tm的定義請參考gmtime()。此函式返回的時間日期已經轉換成當地時區。

返回值  返回結構tm代表目前的當地時間。

範例  #include

main();

time_t timep;

struct tm *p;

time(&timep);

p=localtime(&timep);

printf (「%d%d%d 」, (1900+p->tm_year),( l+p->tm_mon), p->tm_mday);

printf(「%s%d:%d:%d/n」, wday[p->tm_wday],p->tm_hour, p->tm_min, p->tm_sec);

}執行  2000/10/28 sat 11:12:22

mktime(將時間結構資料轉換成經過的秒數) 

相關函式  time,asctime,gmtime,localtime

表頭檔案  #include

定義函式  time_t mktime(strcut tm * timeptr);

函式說明  mktime()用來將引數timeptr所指的tm結構資料轉換成從公元2023年1月1日0時0分0 秒算起至今的utc時間所經過的秒數。

返回值  返回經過的秒數。

範例 #include

main()

執行  time():974943297

time()->localtime()->mktime():974943297

settimeofday(設定目前時間) 

相關函式  time,ctime,ftime,gettimeofday

表頭檔案  #include

#include

定義函式  int settimeofday ( const struct tim *tv,const struct timezone *tz);

函式說明  settimeofday()會把目前時間設成由tv所指的結構資訊,當地時區資訊則設成tz所指的結構。詳細的說明請參考gettimeofday()。注意,只有root許可權才能使用此函式修改時間。

返回值  成功則返回0,失敗返回-1,錯誤**存於errno。

錯誤**  eperm 並非由root許可權呼叫settimeofday(),許可權不夠。

einval 時區或某個資料是不正確的,無法正確設定時間。

time(取得目前的時間) 

相關函式  ctime,ftime,gettimeofday

表頭檔案  #include

定義函式  time_t time(time_t *t);

函式說明  此函式會返回從公元2023年1月1日的utc時間從0時0分0秒算起到現在所經過的秒數。如果t 並非空指標的話,此函式也會將返回值存到t指標所指的記憶體。

返回值  成功則返回秒數,失敗則返回((time_t)-1)值,錯誤原因存於errno中。

範例  #include

mian()

執行  9.73e+08

TIME 得到當前時間

c 中得到當前時間有2種方式 getsystemtime 得到當前系統時間,由於是utc的時間。轉換為本地時間時要加上8小時。可以從電腦時間屬性的時區看到相差多少小時 getlocaltime 得到當前本地時間 c 得到時間的函式有乙個返回引數,是systemtime型別的 systemtime s...

Calendar 和Date得到當前時間的年月日

1.calendar calendar calendar.getinstance string year string.valueof calendar.get 1 string month string.valueof calendar.get 2 1 if month.length 1 mont...

C庫得到系統當前的時間

include include include static time t end time intmain endif time end time 得到當前從1970開始的時間 crtimp struct tm cdecl mingw nothrow localtime const time t ...