国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

目錄
從std::chrono::time_point 提取時(shí)間分量
提取系統(tǒng)時(shí)鐘組件
使用自訂持續(xù)時(shí)間
使用日期庫
C 20 標(biāo)準(zhǔn)庫支援
首頁 後端開發(fā) C++ 如何從 `std::chrono::time_point` 物件中提取時(shí)間分量?

如何從 `std::chrono::time_point` 物件中提取時(shí)間分量?

Nov 02, 2024 pm 06:58 PM

How can I extract temporal components from a `std::chrono::time_point` object?

從std::chrono::time_point 提取時(shí)間分量

目標(biāo):取得年、月、日、時(shí)、分、秒,以及來自std::chrono::time_point 物件的毫秒。

解決方案:

要提取此信息,您特別需要一個(gè) system_clock::time_point,提供與民用日曆系統(tǒng)的關(guān)係。

<code class="cpp">using namespace std::chrono;
system_clock::time_point now = system_clock::now();</code>

下一步是將其轉(zhuǎn)換為time_t,使用:

<code class="cpp">time_t tt = system_clock::to_time_t(now);</code>

利用C 庫將time_t 轉(zhuǎn)換為tm,確保正確的時(shí)間選擇區(qū)域:

<code class="cpp">tm utc_tm = *gmtime(&amp;tt);
tm local_tm = *localtime(&amp;tt);</code>

現(xiàn)在,您可以提取tm 的組件:

<code class="cpp">std::cout << local_tm.tm_year + 1900 << '\n';
std::cout << local_tm.tm_mon + 1 << '\n';
std::cout << local_tm.tm_mday << '\n';

提取系統(tǒng)時(shí)鐘組件

此外,如果您願意,您可以可以依賴以下非保證方法:

大多數(shù)人所知的system_clock 的每個(gè)實(shí)作都是基於Unix 時(shí)間(自1970 年1 月1 日UTC 以來的秒數(shù)),通常具有比秒更精細(xì)的精度。

以下綜合程序提供了提取所有時(shí)間分量的範(fàn)例:

<code class="cpp">#include <chrono>
#include <ctime>
#include <iostream>

int main() {
  using namespace std::chrono;
  typedef duration<int, ratio_multiply<hours::period, ratio<24> >::type> days;
  system_clock::time_point now = system_clock::now();
  system_clock::duration tp = now.time_since_epoch();
  days d = duration_cast<days>(tp);
  tp -= d;
  hours h = duration_cast<hours>(tp);
  tp -= h;
  minutes m = duration_cast<minutes>(tp);
  tp -= m;
  seconds s = duration_cast<seconds>(tp);
  tp -= s;
  std::cout << d.count() << "d " << h.count() << ':' << m.count() << ':' << s.count();
  std::cout << " " << tp.count() << "[" << system_clock::duration::period::num << '/' << system_clock::duration::period::den << "]\n";

  time_t tt = system_clock::to_time_t(now);
  tm utc_tm = *gmtime(&amp;tt);
  tm local_tm = *localtime(&amp;tt);
  std::cout << utc_tm.tm_year + 1900 <&lt '-';
  std::cout << utc_tm.tm_mon + 1 << '-';
  std::cout << utc_tm.tm_mday << ' ';
  std::cout << utc_tm.tm_hour << ':';
  std::cout << utc_tm.tm_min << ':';
  std::cout << utc_tm.tm_sec << '\n';
}</code>

使用自訂持續(xù)時(shí)間

要對天進(jìn)行建模,請建立自訂持續(xù)時(shí)間:

<code class="cpp">typedef duration<int, ratio_multiply<hours::period, ratio<24> >::type> days;</code>

現(xiàn)在您可以使用system_clock::duration 的精度獲取自紀(jì)元以來的時(shí)間:

<code class="cpp">system_clock::duration tp = now.time_since_epoch();</code>

將其截?cái)酁樘靵K減去:

<code class="cpp">days d = duration_cast<days>(tp);
tp -= d;</code>

重複此操作處理小時(shí)、分鐘和秒。

餘數(shù)是以 system_clock::duration 為單位的秒的一小部分。

使用日期庫

此C 11/14 庫簡化了上述過程:

<code class="cpp">#include "date.h"
#include <iostream>

int main() {
  using C = std::chrono;
  using D = date;
  using S = std;

  auto tp = C::system_clock::now();
  {
    using namespace date;
    S::cout << tp << '\n';
  }
  auto dp = D::floor<D::days>(tp);
  auto ymd = D::year_month_day{dp};
  auto time = D::make_time(C::duration_cast<C::milliseconds>(tp - dp));
  S::cout << "year        = " << ymd.year() << '\n';
  S::cout << "month       = " << ymd.month() << '\n';
  S::cout << "day         = " << ymd.day() << '\n';
  S::cout << "hour        = " << time.hours().count() << "h\n";
  S::cout << "minute      = " << time.minutes().count() << "min\n";
  S::cout << "second      = " << time.seconds().count() << "s\n";
  S::cout << "millisecond = " << time.subseconds().count() << "ms\n";
}

C 20 標(biāo)準(zhǔn)庫支援

C 20 引入了用於從system_clock::time_point 中提取這些欄位的標(biāo)準(zhǔn)化語法:

<code class="cpp">#include <chrono>

int main() {
  using namespace std::chrono;
  auto tp = system_clock::now();
  auto dp = floor<days>(tp);
  year_month_day ymd{dp};
  hh_mm_ss time{floor<milliseconds>(tp - dp)};
  auto y = ymd.year();
  auto m = ymd.month();
  auto d = ymd.day();
  auto h = time.hours();
  auto M = time.minutes();
  auto s = time.seconds();
  auto ms = time.subseconds();
}</code>

以上是如何從 `std::chrono::time_point` 物件中提取時(shí)間分量?的詳細(xì)內(nèi)容。更多資訊請關(guān)注PHP中文網(wǎng)其他相關(guān)文章!

本網(wǎng)站聲明
本文內(nèi)容由網(wǎng)友自願投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請聯(lián)絡(luò)admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費(fèi)脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅(qū)動的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費(fèi)的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強(qiáng)大的PHP整合開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

c多態(tài)性:功能是否超載一種多態(tài)性? c多態(tài)性:功能是否超載一種多態(tài)性? Jun 20, 2025 am 12:05 AM

是的,函數(shù)重載是C 中的一種多態(tài)形式,具體來說是編譯時(shí)多態(tài)。 1.函數(shù)重載允許使用相同名稱但不同參數(shù)列表的多個(gè)函數(shù)。 2.編譯器根據(jù)提供的參數(shù)在編譯時(shí)決定調(diào)用哪個(gè)函數(shù)。 3.與運(yùn)行時(shí)多態(tài)不同,函數(shù)重載在運(yùn)行時(shí)沒有額外開銷,實(shí)現(xiàn)簡單,但靈活性較低。

C中有哪種多態(tài)性的多態(tài)性?解釋了 C中有哪種多態(tài)性的多態(tài)性?解釋了 Jun 20, 2025 am 12:08 AM

C 有兩種主要的多態(tài)類型:編譯時(shí)多態(tài)和運(yùn)行時(shí)多態(tài)。 1.編譯時(shí)多態(tài)通過函數(shù)重載和模板實(shí)現(xiàn),提供高效但可能導(dǎo)致代碼膨脹。 2.運(yùn)行時(shí)多態(tài)通過虛函數(shù)和繼承實(shí)現(xiàn),提供靈活性但有性能開銷。

C:多態(tài)性真的有用嗎? C:多態(tài)性真的有用嗎? Jun 20, 2025 am 12:01 AM

是的,C 中的多態(tài)性非常有用。1)它提供了靈活性,允許輕松添加新類型;2)促進(jìn)代碼重用,減少重復(fù);3)簡化維護(hù),使代碼更易擴(kuò)展和適應(yīng)變化。盡管存在性能和內(nèi)存管理的挑戰(zhàn),但其優(yōu)勢在復(fù)雜系統(tǒng)中尤為顯著。

C驅(qū)動器:常見錯(cuò)誤 C驅(qū)動器:常見錯(cuò)誤 Jun 20, 2025 am 12:12 AM

C destructorscanleadtoseveralcommonerrors.Toavoidthem:1)Preventdoubledeletionbysettingpointerstonullptrorusingsmartpointers.2)Handleexceptionsindestructorsbycatchingandloggingthem.3)Usevirtualdestructorsinbaseclassesforproperpolymorphicdestruction.4

C中的多態(tài)性:綜合指南 C中的多態(tài)性:綜合指南 Jun 21, 2025 am 12:11 AM

C 中的多態(tài)性分為運(yùn)行時(shí)多態(tài)性和編譯時(shí)多態(tài)性。 1.運(yùn)行時(shí)多態(tài)性通過虛函數(shù)實(shí)現(xiàn),允許在運(yùn)行時(shí)動態(tài)調(diào)用正確的方法。 2.編譯時(shí)多態(tài)性通過函數(shù)重載和模板實(shí)現(xiàn),提供更高的性能和靈活性。

c認(rèn)識python的人的教程 c認(rèn)識python的人的教程 Jul 01, 2025 am 01:11 AM

學(xué)Python的人轉(zhuǎn)學(xué)C 最直接的困惑是:為什麼不能像Python那樣寫?因?yàn)镃 雖然語法更複雜,但提供了底層控制能力和性能優(yōu)勢。 1.語法結(jié)構(gòu)上,C 使用花括號{}而非縮進(jìn)組織代碼塊,且變量類型必須顯式聲明;2.類型系統(tǒng)與內(nèi)存管理方面,C 沒有自動垃圾回收機(jī)制,需手動管理內(nèi)存並註意釋放資源,使用RAII技術(shù)可輔助資源管理;3.函數(shù)與類定義中,C 需要明確訪問修飾符、構(gòu)造函數(shù)和析構(gòu)函數(shù),並支持如運(yùn)算符重載等高級功能;4.標(biāo)準(zhǔn)庫方面,STL提供了強(qiáng)大的容器和算法,但需要適應(yīng)泛型編程思想;5

C中的多態(tài)性的各種形式是什麼? C中的多態(tài)性的各種形式是什麼? Jun 20, 2025 am 12:21 AM

C polymorphismincludescompile-time,runtime,andtemplatepolymorphism.1)Compile-timepolymorphismusesfunctionandoperatoroverloadingforefficiency.2)Runtimepolymorphismemploysvirtualfunctionsforflexibility.3)Templatepolymorphismenablesgenericprogrammingfo

C多態(tài)性:編碼樣式 C多態(tài)性:編碼樣式 Jun 19, 2025 am 12:25 AM

C polymorphismisuniqueduetoitscombinationofcompile-timeandruntimepolymorphism,allowingforbothefficiencyandflexibility.Toharnessitspowerstylishly:1)Usesmartpointerslikestd::unique_ptrformemorymanagement,2)Ensurebaseclasseshavevirtualdestructors,3)Emp

See all articles