朋友模板定义。包括<t>何时何地?</t>

时间:2013-04-27 21:46:08

标签: c++ templates inheritance friend

我想我只需要另一双眼睛来找出我做错了什么。

这是错误:

bfgs_template.hpp:478:5: error: ‘di’ was not declared in this scope
bfgs_template.hpp:478:8: error: ‘b’ was not declared in this scope

这是代码的快照:

template<typename T>
void update_d();

template<typename T>
class BFGSB: public BFGS<T>{
protected:
  double *di;
  int b;
public:
  friend void update_d<T>();
};


template<typename T>
void update_d(){
    di[b] = 0.0; 
}

顺便说一下。虽然我没有发布其余的代码。 di初始化,如果我使update_d成为该类的成员。一切顺利。

1 个答案:

答案 0 :(得分:4)

仅仅因为update_dBFGSB的朋友,并不意味着它只能访问dib。这是一个非成员函数,就像任何其他函数一样。它与BFGSB的任何特定实例无关,因此无法访问特定的dib个对象。将其设为好友只是意味着允许访问di对象的bBFGSB成员。例如,它可以这样做:

template<typename T>
void update_d(){
    BFGSB<T> obj; // We can access the privates of this object
    obj.di[obj.b] = 0.0; 
}