gpt4 book ai didi

c++ - 在小数秒内格式化一个只有 3 位数字的 posix 时间

转载 作者:搜寻专家 更新时间:2023-10-31 02:24:19 24 4
gpt4 key购买 nike

以下代码中毫秒的 microsec_clock 是什么?

#include <boost/date_time/posix_time/posix_time.hpp>

int main()
{
boost::posix_time::ptime date_time = boost::posix_time::microsec_clock::local_time();
const std::string str_time = boost::posix_time::to_simple_string(date_time);
std::cout << str_time << std::endl;
return 0;
}

output: 2015-Jan-25 16:26:14.932738

我需要以下输出:

output: 2015-Jan-25 16:26:14.932

最佳答案

的确,这似乎是图书馆的一个奇怪遗漏。

话又说回来,strftime 似乎没有 cargo :http://en.cppreference.com/w/cpp/chrono/c/strftime

那么,如何修补 time_facet 实现才能实现这一点?这是 patch针对 boost 1.57 的 boost::date_time::time_facet.hpp ( applied )。

1d0
<
39a39
> static const char_type fractional_seconds_3digits[3]; // 3
72a73,76
> time_formats<CharT>::fractional_seconds_3digits[3] = {'%','3'};
>
> template <class CharT>
> const typename time_formats<CharT>::char_type
215a220
> static const char_type* fractional_seconds_3digits; // %3
397a403,411
> if (local_format.find(fractional_seconds_3digits) != string_type::npos) {
> // replace %3 with nnn
> if (frac_str.empty()) {
> frac_str = fractional_seconds_as_3digit_string(time_arg.time_of_day(), false);
> }
> boost::algorithm::replace_all(local_format,
> fractional_seconds_3digits,
> frac_str);
> }
506a521,529
> if (format.find(fractional_seconds_3digits) != string_type::npos) {
> // replace %3 with nnn
> if (frac_str.empty()) {
> frac_str = fractional_seconds_as_3digit_string(time_dur_arg, false);
> }
> boost::algorithm::replace_all(format,
> fractional_seconds_3digits,
> frac_str);
> }
550a574,592
> fractional_seconds_as_3digit_string(const time_duration_type& time_arg,
> bool null_when_zero)
> {
> typename time_duration_type::fractional_seconds_type frac_sec =
> time_arg.fractional_seconds();
>
> for (auto n = time_arg.num_fractional_digits(); n>3; --n)
> frac_sec /= 10;
>
> if (null_when_zero && (frac_sec == 0)) {
> return string_type();
> }
>
> //make sure there is no sign
> return integral_as_string(date_time::absolute_value(frac_sec), 3);
> }
>
> static
> string_type
599a642,645
>
> template <class time_type, class CharT, class OutItrT>
> const typename time_facet<time_type, CharT, OutItrT>::char_type*
> time_facet<time_type, CharT, OutItrT>::fractional_seconds_3digits = time_formats<CharT>::fractional_seconds_3digits;

现在您可以将 Boost DateTime 的 time_facet 用于 ptimes:

#include "time_facet.hpp"
#include <boost/date_time/posix_time/posix_time.hpp>

int main()
{
using namespace boost::posix_time;
ptime const date_time = microsec_clock::local_time();

std::cout << date_time << std::endl;

auto facet = new time_facet("%Y-%b-%d %H:%M:%S.%f %z");
std::cout.imbue(std::locale(std::cout.getloc(), facet));
std::cout << date_time << std::endl;

facet = new time_facet("%Y-%b-%d %H:%M:%S.%3 %z");
std::cout.imbue(std::locale(std::cout.getloc(), facet));
std::cout << date_time << std::endl;
}

哪个打印

2015-Jan-25 22:32:30.392108
2015-Jan-25 22:32:30.392108
2015-Jan-25 22:32:30.392

现在这是一个粗略的补丁,只是为了展示如果你要添加它你需要完成什么。相关的改进似乎是:

  • 支持在小数秒中允许不同数字位数的格式字符串
  • 使用适当的舍入(而不是截断,现在会发生什么)

我希望这个示例对您有所帮助。

关于c++ - 在小数秒内格式化一个只有 3 位数字的 posix 时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28136660/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com