gpt4 book ai didi

c++ - 我可以在 Visual Studio 2012 中将方法声明为友元吗?

转载 作者:太空狗 更新时间:2023-10-29 21:44:41 26 4
gpt4 key购买 nike

结论:是的,但从 VC++ 11.0.60610.01 开始,Intellisense 不喜欢它

我通常不使用友元,但这次我真的需要它,我无法让它在 Visual Studio 2012 中工作。我认为这可能是一个智能感知错误(代码编译正常)但我只是想看看我的代码是否有问题。这重现了问题:

class B;

class A
{
public:
int fun(B b);
};

class B
{
public:
friend int A::fun(B b);
B() : member(0) {}
private:
int member;
};

int A::fun(B b)
{
return b.member; // Error: B::member is inaccessible.
}

int main()
{
A a;
B b;
std::cout << a.fun(b);
return 0;
}

以上代码compiles fine on codepad但在 VS2012 中返回 Intellisense 错误。我做错了什么吗?

最佳答案

我认为这是因为您的类中没有构造函数。在这种情况下,它似乎被 IntelliSense catch 了(这可能确实是一个错误,因为如果您将 friend 子句更改为 friend class A; 它不会提示),这让您感到困惑关闭:

IntelliSense: member "B::member" (declared at line 18) is inaccessible

真正的错误(编译器默认将警告视为错误)是这样的:

error C4700: uninitialized local variable 'b' used

这是我调用的方式:

int _tmain(int argc, _TCHAR* argv[])
{
A a;
B b;
std::cout << a.fun(b);
return 0;
}

如果您为 B 指定您自己的默认构造函数,并且初始化 member,它将构建(并且 IntelliSense 不会提示):

class B
{
public:
B() : member(0) {}
private:
int member;
friend int A::fun(B b);
};

关于c++ - 我可以在 Visual Studio 2012 中将方法声明为友元吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19417086/

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