您好,登錄后才能下訂單哦!
在 C++ 中,你可以使用 std::put_time
函數(shù)配合 std::strftime
來格式化時間戳。下面是一個簡單的示例代碼:
#include <iostream>
#include <iomanip>
#include <ctime>
int main() {
// 獲取當前時間戳
time_t timestamp = time(nullptr);
// 將時間戳轉換為 std::tm 結構體
std::tm local_time = *std::localtime(×tamp);
// 設置輸出格式
std::cout << "Formatted time: ";
std::cout << std::put_time(&local_time, "%Y-%m-%d %H:%M:%S") << std::endl;
return 0;
}
在這個示例中,我們首先獲取當前時間戳,然后將其轉換為 std::tm
結構體。接著,我們使用 std::cout
和 std::put_time
函數(shù)將時間格式化為字符串輸出。其中,%Y
表示年份,%m
表示月份,%d
表示日期,%H
表示小時,%M
表示分鐘,%S
表示秒。你可以根據(jù)需要調(diào)整格式字符串。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。