Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Überladen des ~ operators

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
01.02.2006, 17:20 Uhr
~Hijacker
Gast


Hallo, ich möchte gerne den ~operator überladen und damit ein Objekt der Klasse Punkt spiegeln. Kann mir jemand helfen ?


Hier mein Quellcode

C++:
#include <iostream>

using namespace std;

class point
{
private:
    int x;
    int y;
public:
    point();
    point(int wert1, int wert2)
    {
        x = wert1;
        y = wert2;
    }

//Hier komm ich nicht mehr weiter
operator~().....

};

void main(void)
{
    point p1(2,3);
//p2 soll hier einfach mathematisch gespiegelt werden, d.h. aus 2 wird 3 und anderstrum
    point p2 ~ p1;
}


 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
01.02.2006, 19:05 Uhr
(un)wissender
Niveauwart


operator~ ist unär.
--
Wer früher stirbt ist länger tot.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: