简体   繁体   English

将double转换为struct tm

[英]Convert double to struct tm

I have a double containing seconds. 我有一个包含秒的double I would like to convert this into a struct tm . 我想将其转换为struct tm

I can't find a standard function which accomplishes this. 我找不到实现此目的的标准函数。 Do I have to fill out the struct tm by hand? 我必须手动填写struct tm吗?

I just accidentally asked this about converting to a time_t and http://www.StackOverflow.com will not let me post unless I link it. 我只是无意中问了有关转换为time_t ,除非链接,否则http://www.StackOverflow.com不会让我发帖。

Well, you accidentally asked the right question before. 好吧,您之前不小心问了正确的问题。 Convert double to time_t , and then convert that to a struct tm . double转换为time_t ,然后将其转换为struct tm There's no subsecond field in struct tm anyway. 无论如何,在struct tm没有亚秒字段。

For grins, using this chrono -based header-only library : 对于咧嘴笑,请使用以下基于chrono的仅标头库

#include "date.h"
#include <iostream>

int
main()
{
    using namespace std::chrono;
    using namespace date;
    auto recovery_time = 320.023s;  // Requires C++14 for the literal 's'
    std::cout << make_time(duration_cast<milliseconds>(recovery_time)) << '\n';
}

outputs: 输出:

00:05:20.023

The object returned by make_time has getters if you want to query each field: 如果要查询每个字段, make_time返回的对象都有吸气剂:

constexpr std::chrono::hours hours() const noexcept {return h_;}
constexpr std::chrono::minutes minutes() const noexcept {return m_;}
constexpr std::chrono::seconds seconds() const noexcept {return s_;}
constexpr precision subseconds() const noexcept {return sub_s_;}

You don't need to choose milliseconds . 您无需选择milliseconds You could choose any precision you want from hours to picoseconds (if you also supply a type alias for picoseconds ). 您可以选择所需的精度,从hourspicoseconds (如果您还为picoseconds提供类型别名)。 For example: 例如:

std::cout << make_time(duration_cast<seconds>(recovery_time)) << '\n';

Outputs: 输出:

00:05:20

MSalters answer is correct, but I thought I'd add a bit of detail on how you should convert to time_t and how you should convert to tm . MSalters的回答是正确的,但我想我将对如何转换为time_t以及如何转换为tm添加一些细节。

So given a number of seconds in double input you can use the implementation dependent method of casting: 因此,在double input给出几秒钟的时间,您可以使用依赖实现的强制转换方法:

const auto temp = static_cast<time_t>(input);

But since time_t is implementation defined there is no way to know that this is a primitive that can simply be cast to. 但是由于time_t是实现定义的,所以没有办法知道这是可以简单地转换为的原语。 So the guaranteed method would be to use the chrono library's implementation independent method of converting: 因此,保证的方法将是使用chrono库的独立实现的转换方法:

const auto temp = chrono::system_clock::to_time_t(chrono::system_clock::time_point(chrono::duration_cast<chrono::seconds>(chrono::duration<double>(input))));

The conversion options are discussed in more detail here: https://stackoverflow.com/a/50495821/2642059 but once you have obtained your time_t through one of these methods you can simply use localtime to convert temp to a struct tm . 转换选项在此处进行了更详细的讨论: https : //stackoverflow.com/a/50495821/2642059,但是一旦通过这些方法之一获得了time_t ,您就可以简单地使用localtimetemp转换为struct tm

const auto output = *localtime(&temp);

Note the dereference is important. 请注意,取消引用很重要。 It will use the default copy assignment operator so output is captured by value, which is essential because: 它将使用默认的副本分配运算符,以便按值捕获output ,这是必不可少的,因为:

The structure may be shared between std::gmtime , std::localtime , and std::ctime , and may be overwritten on each invocation. 该结构可以在std::gmtimestd::localtimestd::ctime之间共享,并且可能在每次调用时被覆盖。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM