我有很多時間戳和與其關聯的數據。我想檢索來自說0800 - 0900的數據。檢查時間戳是否在這個之間的方法是什麼? 我應該如何編寫一個輸入兩個小時的函數,並返回一個落在這些小時內的時間戳列表,而不管它是哪一天?查看時間戳是否在特定小時之間
像
std::list<uint32_t> getTimestampsBetween(uint16_t min_hour, uint16_t max_hour)
{
if(timestamp from list of timestamp is between min_hour and max_hour)
add it to list;
return list;
}
http://cplusplus.com/reference/clibrary/ctime/localtime/和http://cplusplus.com/reference/clibrary/ctime/tm/ – BoBTFish 2012-03-27 07:19:38