在c++中有没有办法从__time32_t得到精确的时间?

lnxxn5zx  于 2022-12-15  发布在  其他
关注(0)|答案(1)|浏览(171)

我有一个服务器,它以__time32_t格式返回时间,我想从__time32_t格式获得毫秒格式的时间,可以吗?

localtime_s(&ptm, &close_time);
        std::wcsftime(buffer, 32, U("%Y.%m.%d %H:%M:%S"), &ptm);
        result[U("close_time")] = web::json::value::string(buffer);

相关问题