我正在编写仅使用boost库作为前提条件的代码。

我需要一个类来处理日期时间值和操作(加减年,月,小时等),因此我选择了公历日期作为选项。

但是,当我处理leap年的日子时,会出现一些惊喜。有一段示例代码:

int main()
{
  boost::gregorian::date d1(2000,1,1);
  boost::gregorian::days ds(118);

  boost::gregorian::date d2 = d1 + ds;

  std::cout << boost::gregorian::to_iso_extended_string(d1) << std::endl;
  std::cout << boost::gregorian::to_iso_extended_string(d2) << std::endl;

  return 0;
}

Output:
2000-01-01
2000-04-28 (should be 2000-04-27)

这个问题有解决方案吗?在手册页中,关于“导致意外结果...”的增强警告

最佳答案

我认为这是正确的:

for a in {1..118}; do echo -n "+$a days: "; date --rfc-2822 -d"2000-01-01 +$a days"; done

版画

显示我在the日前后没有发现异常:
+1 days: Sun, 02 Jan 2000 00:00:00 +0100
+2 days: Mon, 03 Jan 2000 00:00:00 +0100
...
+57 days: Sun, 27 Feb 2000 00:00:00 +0100
+58 days: Mon, 28 Feb 2000 00:00:00 +0100
+59 days: Tue, 29 Feb 2000 00:00:00 +0100
+60 days: Wed, 01 Mar 2000 00:00:00 +0100
...
+116 days: Wed, 26 Apr 2000 00:00:00 +0200
+117 days: Thu, 27 Apr 2000 00:00:00 +0200
+118 days: Fri, 28 Apr 2000 00:00:00 +0200

关于c++ - Boost::公历和leap年,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23876274/

10-10 07:20