我刚开始学习C ++。 在浏览本网站上的代码时,我遇到了一个代码,该代码验证了用户输入的日期。但问题是它甚至可能需要未来的值,因此需要调整此逻辑以便接受DOB。 所以我决定用#34; time()"功能,然后将其与输入的日期进行比较。首先,我在代码中添加了两行(在下面的代码中注释的那些)
time(&tNow);
和
const struct tm *now = localtime(&tNow);
这是我的代码:
#include <iostream>
#include <sstream>
#include <ctime>
using namespace std;
// function expects the string in format dd/mm/yyyy:
bool extractDate(const std::string& s, int& d, int& m, int& y){
std::istringstream is(s);
char delimiter;
if (is >> d >> delimiter >> m >> delimiter >> y) {
struct tm t = {0};
t.tm_mday = d;
t.tm_mon = m - 1;
t.tm_year = y - 1900;
t.tm_isdst = -1;
// normalize:
time_t when = mktime(&t);
time_t tNow;
// time(&tNow);
const struct tm *norm = localtime(&when);
// const struct tm *now = localtime(&tNow); /* when I uncomment this line the code
// does not accept future date */
// validate (is the normalized date still the same?):
return (norm->tm_mday == d &&
norm->tm_mon == m - 1 &&
norm->tm_year == y - 1900);
}
return false;
}
int main() {
std::string s("11/01/2015");
int d,m,y;
if (extractDate(s, d, m, y))
std::cout << "date "
<< d << "/" << m << "/" << y
<< " is valid" << std::endl;
else
std::cout << "date is invalid" << std::endl;
}
当我取消注释const struct tm *now = localtime(&tNow);
时,代码会将正确的输出作为&#34;无效的日期&#34;对于任何未来的日期值...但为什么会发生这种情况。我正在获得正确的输出,但我想知道原因。
答案 0 :(得分:4)
好的,问题是localtime
多次调用时会返回相同的缓冲区。您需要复制结果(或使用带有额外参数的localtime_r
,但它不太可移植)。
这是我的代码调试会话(带有未注释的部分):
(gdb) p norm
$1 = (const tm *) 0x7ffff75aca60 <_tmbuf>
(gdb) p now
$2 = (const tm *) 0x7ffff75aca60 <_tmbuf>
我解决它的方式是:
const struct tm norm = *localtime(&when);
const struct tm now = *localtime(&tNow);
// validate (is the normalized date still the same?):
return (norm.tm_mday == d &&
norm.tm_mon == m - 1 &&
norm.tm_year == y - 1900);
同一主题还有其他几种变体,但这应该有用。
答案 1 :(得分:1)
大多数localtime()
实现使用内部本地静态struct tm
。返回的指针是指向此单个实例的指针,因此您的案例norm
和now
指向同一个struct tm
实例,第二个调用会修改它。
某些实现可能会使用线程本地存储,因此不同线程中的使用至少会获得单独的struct tm
,但这不会影响这种情况,并且不是必需的行为。
大多数documentation对此都很清楚,例如链接的参考文献说明:
返回的值指向一个内部对象,其有效性或值可能会被随后的gmtime或localtime调用更改。