如何访问私有成员 - 具有友元功能的数组

时间:2016-02-02 08:11:08

标签: c++ arrays function friend

我是C ++的新手,我编写代码来了解朋友的功能是如何工作的。这里有两个类,我向friend函数中的用户询问参数,如果它们与成员变量的值相等,则显示它们。我无法访问其中一个私有成员 - 具有国家/地区名称的数组。在函数int elcountry(element &e, supply s)中,我试图显示特定类型和特定国家/地区的元素数量。错误是elCountry函数中的成员supply::country, (s.country[i])不可访问。我不知道如何使用getCountry()函数来访问私有数组。

class element {
        friend class supply;
    private:
        string name;
        double value;
        int serial;
    public:
        element();
        int elCountry(element &e, supply &s);
         double* nominals(element &e, supply &s);
        string getName() {
            return name;
        }
        int getSerial() {
            return serial;
        }
    };
    class supply {
    private:
        int serial;
        string country[5];
        int n;
    public:
        supply();
        string* getCountry() {
            string country = new string[5];
                return country;
        }
        friend int elCountry(element &e, supply &s);
        friend double* nominals(element &e, supply &s);
    };
    int elcountry(element &e, supply s){
        string names, Country;
        int n;
        cout << "enter country = "; cin >> Country;
        cout << "enter name of the element = "; cin >> names;
        cout << "enter number of elements = "; cin >> n;
        for (int i = 0; i < 5; i++) {
            if (Country == s.country[i] && names  == e.getName() && n ==  e.getSerial()) {
                cout << "the country is " << count << endl;
                cout << "the name is" << names << endl;
                cout << "the number is " << n << endl;
            }
        }
           return n;
}

1 个答案:

答案 0 :(得分:2)

两个功能的签名不匹配,它们无关,它根本不是friend功能。

friend int elCountry(element &e, supply &s);
             ~                          ~
int elcountry(element &e, supply s){
      ~

请注意,名称不匹配。