У меня есть задание и я пытаюсь что-то понять. У меня есть инструкция по созданию двух интерфейсов: IComparable
и IPrintable
. Кроме того, мне нужно создать шаблон с именем Interval
.
Мне дана функция main
, и мне нужно соответствующим образом реализовать эти классы, чтобы она работала как положено.
Это функция, которую я сейчас реализую (в комментариях показано, как должен выглядеть ввод):
void testDate() {
Date independence(14, 5, 1948);
cout << independence << endl;
Date otherDate = independence;
cout << "Independence:" << independence << ", Other: " << otherDate << endl; // Independence:14/05/1948, Other: 14/05/1948
otherDate.setMonth(2);
cout << "Other date: " << otherDate << endl; // Other date: 14/02/1948
otherDate.setDay(29);
cout << "Other date: " << otherDate << endl; // Other date: 29/02/1948
otherDate.setYear(1947);
cout << "Other date: " << otherDate << endl; // Other date: Not a leap year
otherDate = Date(24, 1, 1959);
cout << "Other date: " << otherDate << endl; // Other date: 24/01/1959
cout << "Comparing using polymorphism" << endl; // Comparing using polymorphism
IComparable<Date> *indP = dynamic_cast <IComparable<Date> *> (&independence);
/* --------------------------- ^^^ Stuck in the line above ^^^ --------------------------- */
cout << "Is independence <= otherDate ? " << (*indP <= otherDate) << endl; // Is independence <= otherDate ? true
IComparable<Date> *otherP = dynamic_cast <IComparable<Date> *> (&otherDate);
cout << "Is other date <= independence ? " << (*otherP <= independence) << endl; // Is other date <= independence ? false
}
Если вы посмотрите на код, вы увидите, где я застрял, и это моя проблема: насколько я знаете, этот тип письма использует шаблоны. Но в инструкции IComparable
называется интерфейсом, а не шаблоном.
Как я могу реализовать это с помощью интерфейса? Могу ли я реализовать его с помощью интерфейса?
Это моя дата. cpp:
#include <iostream>
#include "Date.h"
#include "IComparable.h"
using namespace std;
void Date::setDay(int d) { day = d; }
int Date::getDay() const { return day; }
void Date::setMonth(int m) { month = m; }
int Date::getMonth() const { return month; }
void Date::setYear(int y) { year = y; }
int Date::getYear() const { return year; }
Date::Date(int d, int m, int y) {
setDay(d);
setMonth(m);
setYear(y);
}
void Date::operator= (const Date& other) {
day = other.getDay();
month = other.getMonth();
year = other.getYear();
}
void Date::toOs(ostream& output) const {
// TODO : Check if leap year!
output << getDay() << "/" << getMonth() << "/" << getYear();
}
bool Date::isLeapYear(int yearToCheck) const {
if (yearToCheck % 4 == 0)
{
if (yearToCheck % 100 == 0)
{
if (yearToCheck % 400 == 0)
return true;
else
return false;
}
else
return false;
}
else
return false;
return false;
}