当前位置:  开发笔记 > 编程语言 > 正文

模板相关的typename

如何解决《模板相关的typename》经验,为你挑选了0个好方法。

请考虑以下代码:

struct bar
{
  template 
  void fun0() const {}
};

template 
struct foo
{
  void
  fun1(const bar& d)
  {
    // (1) KO
    fun2(d).fun0();
    // (2) OK
    fun2(d).template fun0();
    // (3) OK        
    d.fun0();
  }

  bar
  fun2(const bar& d)
  {
    return d;
  }
};

第(2)和(3)行编译,但(1)失败:

error: use 'template' keyword to treat 'fun0' as a dependent template name
    fun2(d).fun0();

            ^
            template 

(正如所料,如果foo不再是模板结构,(1)也编译)

为什么bar::fun0依赖模板名称在这里?bar不依赖于模板参数Tfoo.

编辑:

显然,bar::fun2负责处理的模糊性.template.例如,让我们添加以下2个免费函数:

bar
fun3(const bar& d)
{
  return d;
}

template 
T
fun4(const T& d)
{
  return d;
}

fun3(d).fun0()并且fun4(d).fun0()还在上下文中编译foo::fun1.因此模糊性是由模板参数引起的foo.

为什么fun2(d).fun0()不将其解析为对成员函数模板的调用?

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有