我是 C++ 的新手。我写了一个简单的程序来实现友元函数的使用。代码如下:-
#include<iostream>
using namespace std;
class one
{
private:
int age;
public:
one()
{
age=1;
}
void setData(int num)
{
age=num;
}
friend int returnOne()
{
return age;
}
};
class two
{
private:
int roll;
public:
two()
{
roll=0;
}
void setData(int num)
{
roll=num;
}
friend int returnTwo()
{
return roll;
}
};
int main()
{
one a;
two b;
cout<<a.returnOne()<<endl<<b.returnTwo()<<endl;
}
我在 C++ 中收到以下错误。
friend.cpp: In function ‘int returnOne()’:
friend.cpp:8:6: error: invalid use of non-static data member ‘one::age’
friend.cpp:20:9: error: from this location
friend.cpp: In function ‘int returnTwo()’:
friend.cpp:27:6: error: invalid use of non-static data member ‘two::roll’
friend.cpp:39:9: error: from this location
friend.cpp: In function ‘int main()’:
friend.cpp:47:10: error: ‘class one’ has no member named ‘returnOne’
friend.cpp:47:31: error: ‘class two’ has no member named ‘returnTwo’
编辑 谢谢。它解决了这个问题。
但它现在把我引向另一个问题。friend 关键字现在不是损害了使用的目的吗private
,因为现在任何类或函数都可以简单地使用friend 函数来访问私有数据成员。如果是,我们可以简单地声明它们数据成员作为public
而不是。private
使用有什么特别之处private
?