date & obj)
{
char c;
in >> obj.day >> c >> obj.month >> c >> obj.year;
return in;
}
std::ostream & operator<< (std::ostream & out, date & obj)
{
out << obj.day << '.' << obj.month << '.' << obj.year;
return out;
}
Вот хедер класса:
#ifndef C_19_DATE_H
#define C_19_DATE_H
#include <iostream>
struct date
{
private:
int day, month, year;
public:
date(int = 1, int = 1, int = 1970);
void set_month(int);
int get_day() const;
int get_month() const;
int get_year() const;
bool operator< (const date &) const;
bool operator> (const date &) const;
friend std::istream & operator>> (std::istream &, date &);
friend std::ostream & operator<< (std::ostream &, const date &);
};
#endif
При обращении к полям day, month, year в cin ошибок нет, а в cout подсвечивает эти поля красным и выдает ошибку. Почему?
параметры в перегрузке и в friend отличаются: std::ostream & operator<< (std::ostream & out, date & obj) friend std::ostream & operator<< (std::ostream &, const date &)
Опять ошибка: undefined reference to `operator<<(std::ostream&, date const&)
реализацию метода поправил?
Обсуждают сегодня