1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #include<iostream> #include<cmath> using namespace std; class Punkt { private: double *_x,*_y; public: Punkt(); Punkt(double,double); double &x() {return *_x;} double &y() {return *_y;} }; Punkt::Punkt() { _x=new double(2); _y=new double(2); } Punkt::Punkt(double x, double y) { _x=new double(x); _y=new double(y); } int main() { Punkt p1(); cout<<p1.x()<<" "<<p1.y(); system("PAUSE"); return 0; } |