gpt4 book ai didi

c++ - 内联模板函数?

转载 作者:IT老高 更新时间:2023-10-28 21:39:23 24 4
gpt4 key购买 nike

如果 inline 模板函数包含在多个 cpp 文件中,我是否需要它们?谢谢。

template<bool> inline QString GetText();
template<> inline QString GetText<true>() {return "true";}
template<> inline QString GetText<false>() {return "false";}

最佳答案

你这样做,因为它们是完整的函数特化,因此像普通函数一样受单一定义规则的约束。

关于c++ - 内联模板函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17667098/

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