> 백엔드 개발 > C++ > 본문

C에서 문자열 시간을 time_t로 변환하는 방법은 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-21 10:10:13
원래의
845명이 탐색했습니다.

How to Convert a String Time to time_t in C  ?

C에서 문자열 시간을 time_t로 변환

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로 변환: 문자열 time을 time_value라는 time_t 변수로 변환합니다. 문자열과 std::mktime의 스트림 구문 분석을 사용하여 function.
  • 시간 변수 비교: 두 개의 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿