//【直接上可以執行的**檔案】
//獲取當前時間.cpp
//方案- time
//優點:僅使用c標準庫;缺點:只能精確到秒級
#include < time.h>
#include < stdio.h>
int main( void )
//方案二getlocaltime
//優點:能精確到毫秒級;缺點:使用了windows api
#include < windows.h>
#include < stdio.h>
int main( void )
//方案三system
//優點:利用系統函式
#include< stdlib.h>
#include< iostream>
using namespace std;
void main()
//可以改變電腦的時間設定
//方案4:time
#include< iostream>
#include< ctime>
using namespace std;
int main()
//另一:_strdate(tempstr);
//另二: ctime
cstring ctestview::gettime()
獲取當前時間
獲取日期 時間 datetime.now.tostring 2008 9 4 20 02 10 datetime.now.tolocaltime tostring 2008 9 4 20 12 12 獲取日期 datetime.now.tolongdatestring tostring 2008年9...
獲取當前時間
使用函式 date 實現 顯示的格式 年 月 日 小時 分鐘 妙 相關時間引數 a am 或是 pm a am 或是 pm d 幾日,二位數字,若不足二位則前面補零 如 01 至 31 d 星期幾,三個英文本母 如 fri f 月份,英文全名 如 january h 12 小時制的小時 如 01 至...
獲取當前時間
1.new data dateformat format new dateformat yyyy mm dd hh mm ss string datastring si1.format new date 把獲取的時間轉換為date格式 date insertdate format.parse dat...