C에서 시간 데이터로 작업할 때 "hh:mm"에 시간이 포함된 문자열을 변환해야 하는 경우가 많습니다. :ss" 형식을 time_t 유형으로 변환합니다. 이를 달성하는 방법은 다음과 같습니다.
#include <iostream> #include <iomanip> #include <sstream> #include <ctime> int main() { std::string time_details = "16:35:12"; struct std::tm tm; std::istringstream ss(time_details); ss >> std::get_time(&tm, "%H:%M:%S"); // or use "%T" for this case std::time_t time_value = std::mktime(&tm); std::cout << "Converted time: " << std::put_time(std::gmtime(&time_value), "%H:%M:%S") << '\n'; return 0; }
이 코드는 다음을 보여줍니다.
시간 변수 비교: 두 개의 time_t 변수(예: curr_time 및 user_time)를 비교하려면 다음 방법을 사용할 수 있습니다.
if (curr_time < user_time) { std::cout << "curr_time is earlier than user_time.\n"; } else if (curr_time == user_time) { std::cout << "curr_time and user_time are the same.\n"; } else { std::cout << "user_time is earlier than curr_time.\n"; }
위 내용은 C에서 문자열 시간을 time_t로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!