摘要: #include //using namespace std;class Point{private: double x; double y;public: Point(double x1,double y1) { x=x1; y=y1; } ~Point()//析构函数 { cout<<"Th... 阅读全文