使用模板友元函数时未解决的重载函数类型

时间:2011-07-14 21:08:32

标签: c++ boost boost-function

我有一个问题,我正在尝试将类模板的朋友函数填充到boost::function中:

#include <boost/function.hpp>

template <int N>
struct Vec{
   friend
   double dot(Vec, Vec){}
};

template class Vec<2>; //Force multiple instantiations
template class Vec<3>;

int main()
{
    boost::function<double  (Vec<2>, Vec<2>)> func = dot;
    double (*func1)(Vec<2>, Vec<2>) = dot;
}

main中的两行都不会编译。对于第一个,GCC抱怨:

error: conversion from '<unresolved overloaded function type>' to non-scalar type 'boost::function<double(Vec<2>, Vec<2>)>' requested

第二行的错误似乎让我更加困惑:

error: no matches converting function 'dot' to type 'double (*)(struct Vec<2>, struct Vec<2>)'
testtmpl.C:6:15: error: candidates are: double dot(Vec<2>, Vec<2>)
testtmpl.C:6:15: error:                 double dot(Vec<3>, Vec<3>)

我有点受阻,因为我不明白为什么double dot(Vec<2>, Vec<2>)不匹配。

关于这里发生了什么的任何想法?

2 个答案:

答案 0 :(得分:5)

根据我的理解,如果在没有其他类的类中定义了友元函数 相应的声明,朋友姓名只能通过ADL查找。
§§7.3.1.2/ 3说:

  

在a之前,通过简单的名称查找找不到朋友的名字   在该命名空间范围

中提供了匹配声明

可以通过添加相应的代码来编译代码 功能声明
double dot(Vec<2>, Vec<2>); 喜欢 here

答案 1 :(得分:0)

这将有效:

template <int N> struct Vec;

template <int K> double dot(Vec<K>, Vec<K>) { return 0; }

template <int N>
struct Vec
{
  friend double dot<>(Vec<N>, Vec<N>);
};

GCC 4.6.1实际上发出了非常有用的警告:

warning: friend declaration ‘double dot(Vec<N>, Vec<N>)’ declares a non-template function [-Wnon-template-friend]
note: (if this is not what you intended, make sure the function template has already been declared and add <> after the function name here)