To tylko jedna z 2 stron tej notatki. Zaloguj się aby zobaczyć ten dokument.
Zobacz
całą notatkę
Calling We may specify which one to call: point p3=point(10.0, 20.0); point p2=point(1.0); point p1=point(); or: point p3=point::point(10.0, 20.0); point p3=point::point(1.0); point p1=point::point(); anonymous objects point pu; // non-anonymous object pu pu = point (3); // temporary anonymous object, // it is deleted right after assignment or // later, ”when not needed anymore” point(20); // temporary anonymous and useless point * ppu; ppu=&point(); // an error hard to trace, correct syntax
... zobacz całą notatkę
Komentarze użytkowników (0)