Showing posts with label cpp. Show all posts
Showing posts with label cpp. Show all posts

Wednesday, March 6, 2024

【C++】高精度的時間量測方法

很多場合會需要進行運算時間的量測,而傳統的 clock 在時間精度上卻相當悲劇,在 15ms 內的時間幾乎很難正確評估。C++ 提供了一個方法,能讓時間量測變得相當精準。

 

Thursday, September 28, 2023

【Qt】透過 Qt 和 C++ 將資料從數據檔案中取出

進行實驗或是產品除錯,常常會將一些數據存成檔案,將數據從檔案中取出有許多方法,這篇記錄一下透過 Qt 將數據從檔案內取出的方法。

 

Monday, May 1, 2023

【程設】Windows 下偵測 Serial Port / COM Port

在 Windows 環境下偵測 Serial Port / COM Port 的方法如下可透 Win32 API 和下述的範例程式達成。

 

Monday, March 20, 2023

【C++】C++取得變數類別與類別名稱(編輯中)

C++ 在設計時有時會需要變數類別,或者類別名稱,這邊整理並實際測試幾個方法。

 

Friday, October 2, 2015

熱門文章