问题:
C 20 功能 std::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中文网其他相关文章!