首页  >  文章  >  后端开发  >  如何将 `std::source_location` 与可变参数模板函数一起使用?

如何将 `std::source_location` 与可变参数模板函数一起使用?

Barbara Streisand
Barbara Streisand原创
2024-10-31 14:59:02698浏览

How to Use `std::source_location` with Variadic Template Functions?

将 std::source_location 与可变参数模板函数结合使用

问题:

C 20 功能 std::source_location 提供函数调用期间的上下文信息。然而,由于可变参数的位置固定,它与可变参数模板函数的集成带来了挑战。

失败的尝试:

  • 将 source_location 作为第一个参数会产生干扰带有可变参数。
  • 在可变参数之间插入 source_location 会破坏调用者的期望。

使用演绎指南的解决方案:

解决此问题,可以使用推导指南:

<code class="cpp">template<typename... Ts>
struct debug {
    debug(Ts&&... ts, const std::source_location& loc = std::source_location::current());
};

template<typename... Ts>
debug(Ts&&...) -> debug<Ts...>;</code>

通过指定推导指南,编译器可以推断出可变参数模板函数的正确类型。

测试:

<code class="cpp">int main() {
    debug(5, 'A', 3.14f, "foo");
}</code>

此代码成功编译并打印提供的参数及其源位置。

DEMO: [原始问题中提供的链接]

以上是如何将 `std::source_location` 与可变参数模板函数一起使用?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn