C ++受保护的成员访问

时间:2018-02-20 20:39:15

标签: c++

需要一个受保护的类来访问月份日,我知道你需要从继承的类创建一个类而不是在main中调用受保护的数据

#include <iostream>
#include <fstream>

using namespace std;

class dateType
{
   public:
      dateType();
      dateType(int, int, int);
      void setDate(int, int, int);
      void printDate(ostream&)const; 


   protected:
      int month;
      int day;
      int year;
};

ostream& operator<<(ostream &os, const dateType &d) {
   os << d.month << "/" << d.day << "/" << d.year; 
   files 

      return os;
} 

当这段代码执行时,我得到一个错误,说月份,日期和年份都受到保护

2 个答案:

答案 0 :(得分:1)

与朋友运营商的代码&lt;&lt;。

#include <iostream>
#include <fstream>

using namespace std;

class dateType
{
public:
    dateType();
    dateType(int, int, int);
    void setDate(int, int, int);
    void printDate(ostream&)const;

    friend ostream& operator<<(ostream &os, const dateType &d) {
        os << d.month << "/" << d.day << "/" << d.year;
        return os;
    }


protected:
    int month;
    int day;
    int year;
};

答案 1 :(得分:0)

你的方法应该是这样的朋友:

friend ostream& operator<<(ostream &os, const dateType &d) 
{
    os << d.getMonth() << "/" << d.getDay() << "/" << d.getYear();
    return os;
}

在课堂实施中