這將只顯示函數被調用時的靜態時間... 如何顯示運行時間?即:當從12:00到12:01的時間的變化,它會自動顯示在屏幕上 我基本上要輸出在我的命令屏幕的頂部運行的時鐘,並顯示其他選項等它的下面C++如何使運行時間顯示在cmd上?作爲系統變化所需的運行時鐘(「清除」)?
//http://stackoverflow.com/questions/997946/c-get-current-time-and-date
// Get current date/time, format is YYYY-MM-DD.HH:mm:ss
const string currentDateTime() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
// Visit http://www.cplusplus.com/reference/clibrary/ctime/strftime/
// for more information about date/time format
strftime(buf, sizeof(buf), "%Y-%m-%d.%X", &tstruct);
return buf;
}