gpt4 book ai didi

c++ - C++ 中的超时变量使用什么类型?

转载 作者:IT老高 更新时间:2023-10-28 21:35:31 25 4
gpt4 key购买 nike

在 C++ 中编写一个将超时作为其参数之一的函数时,我应该为超时参数本身使用什么类型?

这种函数的一个例子可能是:

void my_function(bool work_really_hard, timeout_type timeout)
{
// Do stuff, until timeout is reached.
}

我曾考虑将 std::chrono::seconds 用于 timeout_type,但这不允许在亚秒级领域使用任何超时。

当使用 std::chrono::nanoseconds 时,指定 10 分钟是很麻烦的。

有什么方法可以合理地解决这个问题,同时保持函数签名和调用简洁明了?

最佳答案

When using std::chrono::nanoseconds instead, it is cumbersome to specify, say, 10 minutes.

其实一点也不麻烦:

#include <chrono>
#include <iostream>

void my_function(bool work_really_hard, std::chrono::nanoseconds timeout)
{
std::cout << timeout.count() << '\n';
}

int main()
{
my_function(true, std::chrono::minutes(10));
}

输出:

600000000000

您唯一一次遇到nanoseconds 的麻烦|是如果你想传递一些不会完全转换为 nanoseconds 的东西,如 picoseconds , 或 duration<long, ratio<1, 3>> (1/3 秒单位)。

更新

我打算将此答案作为已接受答案的附加信息,我认为这是一个很好的答案(由 sehe)。 sehe 推荐了一个模板化的解决方案,我也认为这很好。

如果您想接受任何 std::chrono::duration ,甚至是您可能需要的 truncate or round ,然后使用 sehe 已删除的答案是要走的路:

template <typename Rep, typename Period>
void my_function(bool work_really_hard, std::chrono::duration<Rep, Period> timeout)
{
// Do stuff, until timeout is reached.
std::this_thread::sleep_for(timeout);
}

如果出于某种原因您不想处理模板和/或您满足于让您的客户只需要指定完全可转换为 std::chrono:nanoseconds 的单位,然后使用 std::chrono:nanoseconds正如我上面显示的,也是完全可以接受的。

所有std::chrono “预定义”单位:

hours
minutes
seconds
milliseconds
microseconds
nanoseconds

可隐式转换为 nanoseconds ,并且不会涉及任何截断或舍入错误。只要您将其保持在两条明亮的白线之内,就不会发生溢出(将汽车保持在自己的车道上的晦涩引用)。只要持续时间在 +/- 292 年之内,您就不必担心这些预定义单位会溢出。

标准定义的函数如std::this_thread::sleep_for按照 sehe 的建议进行模板化,这正是希望与每个 chrono:duration 互操作的原因。可以想象(例如浮点飞秒的 1/3)。由 API 设计者决定他们是否需要在自己的 API 中具有如此高的灵 active 。

如果我现在设法让您感到困惑而不是澄清,请不要太担心。如果您选择使用 nanoseconds ,事情要么完全正常,没有截断或舍入错误,要么客户端会得到一个编译时错误。会有no运行时错误。

void my_function(bool work_really_hard, std::chrono::nanoseconds timeout)
{
std::cout << timeout.count() << '\n';
}

int
main()
{
using namespace std;
using namespace std::chrono;
typedef duration<double, pico> picoseconds;
my_function(true, picoseconds(100000.25));
}

test.cpp:15:9: error: no matching function for call to 'my_function'
my_function(true, picoseconds(100000.25));
^~~~~~~~~~~
test.cpp:4:10: note: candidate function not viable: no known conversion from 'duration<double, ratio<[...], 1000000000000>>' to
'duration<long long, ratio<[...], 1000000000>>' for 2nd argument
void my_function(bool work_really_hard, std::chrono::nanoseconds timeout)
^
1 error generated.

如果客户端遇到编译时错误,他总是可以使用duration_cast解决它:

my_function(true, duration_cast<nanoseconds>(picoseconds(100000.25)));  // Ok

更多详情请见:

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2661.htm

对此答案顶部的原始代码进行了甜蜜更新。在 C++1y 中,我们希望这意味着 C++14:

using namespace std::literals;
my_function(true, 10min); // also ok, is equal to 600000000000 nanoseconds

问题:你会推荐什么作为“无限”超时(即不要超时)

我会首先尝试使用没有超时的 API,这意味着“不会超时”。例如 condition_variable::wait .如果我可以控制 API,我会创建这样的签名而不会超时。

如果做不到这一点,我会创建一个“大”系列 chrono::durations :

using days = std::chrono::duration
<
std::int32_t, std::ratio_multiply<std::chrono::hours::period, std::ratio<24>>
>;

using weeks = std::chrono::duration
<
std::int32_t, std::ratio_multiply<days::period, std::ratio<7>>
>;

using years = std::chrono::duration
<
std::int32_t, std::ratio_multiply<days::period, std::ratio<146097, 400>>
>;

using months = std::chrono::duration
<
std::int32_t, std::ratio_divide<years::period, std::ratio<12>>
>;

然后我会在通话中使用这些较长的持续时间之一,例如:

std::this_thread::sleep_for(years(3));

我不会尝试将 push_things 最大化(例如,您可能会破坏操作系统所做的基本假设)。随便挑一些大得离谱的东西(比如 3 年)。这会引起您的代码审查员的注意,并可能会引发一次内容丰富​​的对话。 :-)

现在提供视频:https://www.youtube.com/watch?v=P32hvk8b13M :-)

关于c++ - C++ 中的超时变量使用什么类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20009351/

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