入力日時 (文字列形式) を指定すると、 liketime
で指定された関数を使用してエポック時間を取得しようとしています。エポック時間を日付と時刻に戻すと、元の日付と時刻より 1 時間少ない日付と時刻になります。私はいくつかの議論を経て、サマータイムの場合には 1 時間の調整があるかもしれないと言っています. コードは次のとおりです。 ctime
mktime
time_t
//sample strptime program.
#include <iostream>
#include <ctime>
#include <string>
using namespace std;
long parseTime(string time) {
cout << "Time entered = " << time << endl;
long timeSinceEpoch;
struct tm t;
if(time.find("/") != string::npos) {
//format of date is mm/dd/yyyy. followed by clock in hh:mm (24 hour clock).
if(strptime(time.c_str(), "%m/%e/%Y %H:%M", &t) == NULL) {
cout << "Error. Check string for formatting." << endl;
}
} else if(time.find("-") != string::npos) {
//format of date is yyyy-mm-dd hh:mm:ss (hh in 24 hour clock format).
cout << "I am here." << endl;
if(strptime(time.c_str(), "%Y-%m-%e %H:%M:%S", &t) == NULL) {
cout << "Error. Check string for formatting of new date." << endl;
}
}
cout << "Details of the time structure:" << endl;
cout << "Years since 1900 = " << t.tm_year << endl;
cout << "Months since January = " << t.tm_mon << endl;
cout << "Day of the month = " << t.tm_mday << endl;
cout << "Hour = " << t.tm_hour << " Minute = " << t.tm_min << " second = " << t.tm_sec << endl;
timeSinceEpoch = mktime(&t);
time_t temp = mktime(&t);
cout << "Time since epoch = " << timeSinceEpoch << endl;
cout << "Reconverting to the time structure:" << endl;
struct tm* t2 = localtime(&temp);
cout << "Details of the time structure:" << endl;
cout << "Years since 1900 = " << t2->tm_year << endl;
cout << "Months since January = " << t2->tm_mon << endl;
cout << "Day of the month = " << t2->tm_mday << endl;
cout << "Hour = " << t2->tm_hour << " Minute = " << t2->tm_min << " second = " << t2->tm_sec << endl;
return timeSinceEpoch;
}
int main(int argc, char *argv[]) {
string date, t;
cout << "Enter date: " << endl;
cin >> date;
cout << "Enter time: " << endl;
cin >> t;
struct tm time;
string overall = date + " " + t;
long result = parseTime(overall);
cout << "Time in date + time = " << overall << " and since epoch = " << result << endl;
return 0;
}
面倒な入力は次のとおりです: date: 2013-03-11 time: 04:41:53
私の質問:
1.tm_idst
フラグを確認すると、DST が有効であることを示すゼロ以外の値が返されます。しかし、どのタイムゾーンが話題になっているのかを知るにはどうすればよいでしょうか?
2. 上記のタイムスタンプは、私がいるタイムゾーンと同じタイムゾーンで記録されていない可能性があります。tm_idst
フラグが正しく設定されるようにタイムゾーンを指定する方法はありますか?
3. タイムスタンプが記録されたタイムゾーンがわからない場合、DST をどのように処理すればよいですか?