gpt4 book ai didi

c++ - 无法在友元函数中实例化类?我没有在范围错误中声明

转载 作者:行者123 更新时间:2023-11-28 05:16:58 25 4
gpt4 key购买 nike

我无法在友元函数中实例化测试类,编译器抛出错误 ptr not declared in this scope。我相信友元函数可以访问该类的所有私有(private)和公共(public)成员,但我收到此错误。我无法弄清楚哪里出错了?

#include<iostream>
using namespace std;

class test;
test* friendOfTest();

class test{
private:
static test* ptr;
public:
friend test* friendOfTest();
void someMethod(){ cout<<"someMethod()\n";}
};

test* test::ptr=NULL;

test* friendofTest(){
ptr = new test; //Error,ptr not declared in this scope in this line
return ptr;
}


int main(){
test* t;
t = friendofTest();
t->someMethod();
return 0;
}

最佳答案

是的,您可以访问 ptr,但是您的语法是错误的:

test* friendofTest(){
test::ptr = new test; // note test::
return test::ptr;
}

友元函数不会作为类的成员函数,它只允许访问它的成员,即使声明为私有(private)或 protected 也是如此。

friendofTest 在这种情况下仍然是一个完全独立 的函数,但是您可以通过 test 访问它的静态成员 < strong>scope resolution operator 像往常一样,即使它被声明为私有(private)。

关于c++ - 无法在友元函数中实例化类?我没有在范围错误中声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42441166/

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