没有匹配的函数来调用函数模板

发布于 2024-11-03 06:28:58 字数 238 浏览 1 评论 0原文

template<class T, T i> void f(int[10][i]) { };

int main() {
   int a[10][30];
   f(a);
}

为什么f(a)失败?

http://ideone.com/Rkc1Z

template<class T, T i> void f(int[10][i]) { };

int main() {
   int a[10][30];
   f(a);
}

Why does f(a) fail?

http://ideone.com/Rkc1Z

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别想她 2024-11-10 06:28:58

f(a) 失败,因为无法从非类型参数的类型推导出模板类型参数。在这种情况下,编译器无法推断模板参数 T 的类型。

尝试将其称为 f(a);

f(a) fails because a template type argument cannot be deduced from the type of a non-type argument. In this case the compiler cannot deduce the type of the template parameter T.

Try calling it as f<int>(a);

冷情妓 2024-11-10 06:28:58

试试这个:

template<class T, T i> void f(T[10][i]) { }; // note the 'T'

int main() {
   int a[10][30];
   f(a);
}

..这使得编译器能够推断出 T 的类型,这在您的示例中是完全不可能的(因为根本没有使用 T)。

http://ideone.com/gyQqI

Try this:

template<class T, T i> void f(T[10][i]) { }; // note the 'T'

int main() {
   int a[10][30];
   f(a);
}

.. this enables the compiler to deduce the type of T, which is totally impossible in your sample (because T is not used at all).

http://ideone.com/gyQqI

用心笑 2024-11-10 06:28:58
template< std::size_t N > void f(int (&arr)[10][N])
{
}

int main() {
   int a[10][30];
   f(a);
}

这个有效(http://codepad.org/iXeqanLJ


有用的背景工具:重载解析和数组:应该调用哪个函数?

template< std::size_t N > void f(int (&arr)[10][N])
{
}

int main() {
   int a[10][30];
   f(a);
}

This one works (http://codepad.org/iXeqanLJ)


Useful backgrounder: Overload resolution and arrays: which function should be called?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文