c 獲取系統時間

2021-06-26 08:18:44 字數 1321 閱讀 6459

//方案— 優點:僅使用c標準庫;缺點:只能精確到秒級

#include #include int main( void )

size_t strftime(char *strdest, size_t maxsize, const char *format, const struct tm *timeptr);

根據格式字串生成字串。

struct tm *localtime(const time_t *timer);

取得當地時間,localtime獲取的結果由結構tm返回

返回的字串可以依下列的格式而定:

%a 星期幾的縮寫。eg:tue

%a 星期幾的全名。 eg: tuesday

%b 月份名稱的縮寫。

%b 月份名稱的全名。

%c 本地端日期時間較佳表示字串。

%d 用數字表示本月的第幾天 (範圍為 00 至 31)。日期

%h 用 24 小時制數字表示小時數 (範圍為 00 至 23)。

%i 用 12 小時制數字表示小時數 (範圍為 01 至 12)。

%j 以數字表示當年度的第幾天 (範圍為 001 至 366)。

%m 月份的數字 (範圍由 1 至 12)。

%m 分鐘。

%p 以 ''am'' 或 ''pm'' 表示本地端時間。

%s 秒數。

%u 數字表示為本年度的第幾周,第乙個星期由第乙個週日開始。

%w 數字表示為本年度的第幾周,第乙個星期由第乙個周一開始。

%w 用數字表示本週的第幾天 ( 0 為週日)。

%x 不含時間的日期表示法。

%x 不含日期的時間表示法。 eg: 15:26:30

%y 二位數字表示年份 (範圍由 00 至 99)。

%y 完整的年份數字表示,即四位數。 eg:2008

%z(%z) 時區或名稱縮寫。eg:中國標準時間

%% % 字元。

//方案二 優點:能精確到毫秒級;缺點:使用了windows api

#include #include int main( void )

//方案三,優點:利用系統函式,還能修改系統時間

//此檔案必須是c++檔案

#include#includeusing namespace std;

void main()

//方案四,將當前時間折算為秒級,再通過相應的時間換算即可

//此檔案必須是c++檔案

#include#includeusing namespace std;

int main()

C 系統時間獲取

在c 中想要獲取當前系統的時候可以使用函式 time t time time t timer 使用這個函式如果傳入的 引數不是null 那麼,它就會把當前系統的時間設定到這個指標當中 這個函式返回的 數字是 從 00 00 hours,jan 1,1970 utc 的 秒 struct tm loc...

C 獲取系統時間

include include using namespace std int main 說明 struct tm 在vc 中,我們可以借助ctime時間類,獲取系統當前日期 ctime t ctime getcurrenttime 獲取系統日期 int d t.getday 獲得幾號 int y ...

C 獲取系統時間

time t time time t t 返回從1970.1.1到指定時間 t 的秒數 time t 為64位長整型,即 int64 vc6.0的64位整數分別叫做 int64與unsigned int64,其範圍分別是 2 63,2 63 與 0,2 64 即 922337203685477580...