为什么编译器不能从默认参数推导出模板类型?

Why can#39;t the compiler deduce the template type from default arguments?(为什么编译器不能从默认参数推导出模板类型?)
本文介绍了为什么编译器不能从默认参数推导出模板类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我很惊讶下面的代码会导致 无法推导出 T 的模板参数 错误:

I was surprised the following code resulted in a could not deduce template argument for T error:

struct foo
{
  template <typename T>
  void bar(int a, T b = 0.0f)
  {
  }
};

int main()
{
  foo a;
  a.bar(5);

  return 0;
}

调用 a.bar(5) 修复了这个问题.为什么编译器不能从默认参数中推导出类型?

Calling a.bar<float>(5) fixes the issue. Why can't the compiler deduce the type from the default argument?

推荐答案

在 C++03 中,规范明确禁止使用默认参数来推导模板参数 (C++03 §14.8.2/17):

In C++03, the specification explicitly prohibits the default argument from being used to deduce a template argument (C++03 §14.8.2/17):

不能从函数默认参数的类型推导出模板类型参数.

A template type-parameter cannot be deduced from the type of a function default argument.

在 C++11 中,你可以为函数模板提供一个默认的模板参数:

In C++11, you can provide a default template argument for the function template:

template <typename T = float>
void bar(int a, T b = 0.0f) { }

不过,默认模板参数是必需的.如果未提供默认模板参数,则默认函数参数仍然不能用于模板参数推导.具体而言,以下适用 (C++11 14.8.2.5/5):

The default template argument is required, though. If the default template argument is not provided, the default function argument is still not usable for template argument deduction. Specifically, the following applies (C++11 14.8.2.5/5):

非推导的上下文是:

...

  • 在函数形参的形参类型中使用的模板形参,该形参有一个默认实参,该实参在正在执行自变量推导的调用中使用.

这篇关于为什么编译器不能从默认参数推导出模板类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)