2

我是 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

4

1 回答 1

4

看看这个链接

友元函数是一个不是类成员但可以访问类的私有成员和受保护成员的函数。朋友函数不被视为类成员;它们是被赋予特殊访问权限的普通外部函数。朋友不在类的范围内,除非它们是另一个类的成员,否则不会使用成员选择运算符(. 和 –>)调用它们。友元函数由授予访问权限的类声明。朋友声明可以放在类声明中的任何位置。它不受访问控制关键字的影响。

于 2013-08-28T07:51:55.080 回答