c ++ необъявленный идентификатор внутри операторной функции - PullRequest
1 голос
/ 26 января 2012

Я создаю класс «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() );

Любая помощь очень ценится.Если вам нужно больше кода, дайте мне знать.

Ответы [ 2 ]

3 голосов
/ 26 января 2012

Если getDay(), getMonth(), getYear() являются функциями-членами, и вы хотите вызвать их на this, измените:

date dTemp( date.getDay(), date.getMonth(), date.getYear() );

до:

date dTemp( getDay(), getMonth(), getYear() );
2 голосов
/ 26 января 2012

Возможно, вы хотите вызвать статические методы здесь:

date dTemp( date.getDay(), date.getMonth(), date.getYear() );

Итак:

date dTemp( date::getDay(), date::getMonth(), date::getYear() );
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...