Я создаю класс «date» в c ++, который содержит переменные дня, месяца и года и набор операторских функций для его использования.
У меня есть заголовок date.h и date.cppдля моего класса и одной из операторских функций в date.cpp дает мне кучу ошибок.
date.cpp (я хочу, чтобы эта оператор-функция подсчитывала добавленные дни и возвращала новый объект даты и избегала измененийисходный объект даты.)
date date::operator+(long days) const{
date dTemp( date.getDay(), date.getMonth(), date.getYear() );
for(int i=0;i<days;i++){
//If days go over a months day count.
if(dTemp.getDay() >= daysInMonth[dTemp.getMonth()]){
dTemp.setDay(1);
if(dTemp.getMonth() < 12){
dTemp.setMonth(dTemp.getMonth() + 1);
}
else{
//Changing a year.
dTemp.setMonth(1);
dTemp.setYear(dTemp.getYear() + 1);
}
}
else{
dTemp.setDay(dTemp.getDay() + 1);
}
}
return dTemp;
}
Ошибки:
1>h:\c++\teht21\teht20\date.cpp(74): error C2143: syntax error : missing ')' before '.'
1>h:\c++\teht21\teht20\date.cpp(74): error C3484: syntax error: expected '->' before the return type
1>h:\c++\teht21\teht20\date.cpp(74): error C2061: syntax error : identifier 'getDay'
1>h:\c++\teht21\teht20\date.cpp(79): error C2065: 'dTemp' : undeclared identifier
1>h:\c++\teht21\teht20\date.cpp(79): error C2228: left of '.getDay' must have class/struct/union
1> type is ''unknown-type''
Строка 74:
date dTemp( date.getDay(), date.getMonth(), date.getYear() );
Любая помощь очень ценится.Если вам нужно больше кода, дайте мне знать.