gpt4 book ai didi

c++ - union 类型的模板特化

转载 作者:太空狗 更新时间:2023-10-29 19:51:02 29 4
gpt4 key购买 nike

如何为 union 类型专门化模板?假设我有模板函数

template <typename T>
void foo(T value);

如果 T 不是任何 union 类型,我想禁止调用此函数。我怎样才能做到这一点?

最佳答案

I want to prohibit calling this function if T is not any union type. How can I achieve this?

也许用 std::is_union

template <typename T>
std::enable_if_t<std::is_union<T>::value> foo(T value)
{ /* ... */ }

关于c++ - union 类型的模板特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56064817/

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