gpt4 book ai didi

c++ - friend 模板定义。何时何地包含

转载 作者:行者123 更新时间:2023-11-27 23:16:09 24 4
gpt4 key购买 nike

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

这是错误:

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 成为该类的成员。一切运行顺利。

最佳答案

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

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

关于c++ - friend 模板定义。何时何地包含 <T>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16257176/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com