在日誌檔案中輸出當前時間

2021-09-08 10:28:22 字數 724 閱讀 9190

在**中需要在出錯的時候將錯誤寫入到日誌檔案,而在寫入錯誤時當然也需要將當前時間寫入進去,下面的一段**就是乙個小例項。

1 #include 2 #include 3 #include 4

5using

namespace

std;67

int main(int argc, char **ar**)815

16//

寫入日誌

17time_t timer;

18struct tm *psttime;

19 timer =time(null);

20 psttime = localtime(&timer);

2122 fout << asctime(psttime) <23 fout << "

errno :

"<< 3

<24 fout << "

error :

"<< "hh"

<25 fout << endl <2627

return0;

28 }

另附一段時間函式的簡單用法**

1 #include 2 #include 3

4using

namespace

std;56

int main(int argc, char **ar**)

7

c 輸出系統當前時間

include iostream include using namespace std int main size t strftime char strdest,size t maxsize,const char format,const struct tm timeptr 根據格式字串生成字串...

在XSL中取得當前時間

在xsl 中怎麼顯示當前時間,可以使用微軟的xsl 命名空間定義 一種是url 命名空間命名法 xmlns msxsl http www.w3.org tr wd xsl 一種是urn 命名空間命名法 xmlns msxsl urn schemas microsoft com xslt 具體 如下,...

獲取(輸出)當前時間 檔案根據實驗時間命名

在進行反覆的調參試驗時,每一次實驗都會產生乙個結果,但是如果將生成的結果命名相同,則會丟失過程中的所有結果,如果手動區分,會很繁雜,容易出錯。下面介紹一種可以以當前的北京時間作為生成結果的命名,這樣絕不會出現重名的現象,也可以對每乙個結果的生成時間和各結果的生成順序一目了然。now datetime...