gpt4 book ai didi

c++ - 具有引用模板参数的函数模板

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:24:53 26 4
gpt4 key购买 nike

有这段代码:

#include <iostream>

template<const double& f>
void fun5(){
std::cout << f << std::endl;
}

int main()
{
const double dddd = 5.0;
fun5<dddd>();
return 0;
}

编译时出现编译器错误:

$ g++ klasa.cpp -o klasa
klasa.cpp: In function ‘int main()’:
klasa.cpp:11:10: error: ‘dddd’ cannot appear in a constant-expression
klasa.cpp:11:16: error: no matching function for call to ‘fun5()’
klasa.cpp:11:16: note: candidate is:
klasa.cpp:4:6: note: template<const double& f> void fun5()

为什么将“dddd”作为模板参数不起作用,应该怎么做才能使其起作用?

最佳答案

模板参数的引用和指针必须具有外部链接(或内部链接,对于 C++11,但需要静态存储持续时间)。因此,如果您必须使用 dddd 作为模板参数,则需要将其移动到全局范围并使其成为 extern:

extern const double dddd = 5.0;
int main()
{
fun5<dddd>();
return 0;
}

关于c++ - 具有引用模板参数的函数模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9218615/

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