C에서 문자열에서 time_t로 시간 변환
C에서는 문자열 변수가 특정 형식으로 시간을 저장하는 시나리오를 접할 수 있습니다. , 예: "hh:mm:ss". 이 시간을 효과적으로 처리하고 사용하려면 time_t 유형으로 변환해야 하는 경우가 많습니다. 이 변환을 사용하면 표준적이고 다양한 방식으로 시간을 작업할 수 있습니다.
변환 프로세스:
C 11에서는 std를 사용하여 이 변환을 수행하는 편리한 방법을 도입했습니다. ::get_time 함수:
struct std::tm tm; std::istringstream ss("16:35:12"); // Initialize the stringstream with your time string ss >> std::get_time(&tm, "%H:%M:%S"); // Parse the time using strftime's format std::time_t time = std::mktime(&tm); // Convert the parsed tm struct to time_t
시간 비교:
두 시간 문자열을 모두 time_t 유형으로 변환하면 쉽게 비교하여 어느 것이 이전 시간을 나타내는지 확인할 수 있습니다. 수행 방법은 다음과 같습니다.
std::time_t curr_time_t; // Convert your current time string to time_t std::time_t user_time_t; // Convert your user time string to time_t if (curr_time_t < user_time_t) { // curr_time is earlier than user_time } else if (curr_time_t > user_time_t) { // user_time is earlier than curr_time } else { // curr_time and user_time are the same }
이러한 방법을 사용하면 시간 문자열을 time_t 유형으로 효율적으로 변환하고 C에서 시간을 비교하여 특정 애플리케이션 요구 사항을 충족할 수 있습니다.
위 내용은 C에서 시간 문자열을 `time_t`로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!