Jump to content
Fórum Script Brasil
  • 0

Funções de sobrecarga de operadores que só funcionam juntas


Castro

Question

:wacko:

Vejam o código:

class Sobrecarga
{
    private:
                  double x,y,saida_tela;  
            
    public:
    //Construtor
    Sobrecarga(double valor);
    //Operadores unários
    //Sobrecarga& operator++(int);
    Sobrecarga& operator++(); 
    Sobrecarga& operator--(int);
    Sobrecarga& operator--();
    //Operador binnario 
    Sobrecarga operator+(Sobrecarga s1);
    //função amiga para imprimir o valor de "a"
  friend ostream& operator<<(ostream& os, Sobrecarga obj);
};
Sobrecarga::Sobrecarga(double valor)
{
    saida_tela=valor;
    x = valor;
        y = valor;
}

Sobrecarga& Sobrecarga::operator++()
 {
    this->x++;
    this->y++;
    this->saida_tela++;
return *this;
 }

/*Sobrecarga& Sobrecarga::operator++(int)
{
    this->x++;
    this->y++;
    this->saida_tela++;
return *this;
} 
*/
ostream &operator<<(ostream& os, Sobrecarga obj)
{
  //os << obj.x;
  //os << obj.y;
  os << obj.saida_tela;
    return os;
}
int main()
{
     Sobrecarga a(4.0);
     cout << "Saida original de \"a\"." << endl;
     cout << a << endl;
     cout << "Saidal de \"a++\"." << endl;
     a++;     
     cout << a << endl;
     return 0;
}

Erro:

Teste.cpp:88:7: error: no 'operator++(int)' declared for postfix '++' [-fpermissive]

Se eu destravar a função que faz o incremento com argumento int o erro desaparece. Por que uma parece estar dependendo da outra? Se eu fizer o mesmo com a função que sobrecarrega o operador de decremento, o erro é o mesmo.

Obrigado

Edited by Castro
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...