摘要: #include using namespace std;class Point{private: int x,y;public: Point(int a,int b=0){ x=a;y=b; cout<<"normal"<<e... 阅读全文
posted @ 2018-04-30 17:42 UnderScrutiny 阅读(170) 评论(0) 推荐(0)
摘要: #include using namespace std;class a{private: int i;public: a(int n):i(n){ cout<<"constructing"<<endl; } ~a(){ ... 阅读全文
posted @ 2018-04-30 17:31 UnderScrutiny 阅读(335) 评论(0) 推荐(0)
摘要: #include using namespace std;class Point{private: int x,y;public: Point(int a,int b=0){ x=a;y=b; cout<<"normal"<<e... 阅读全文
posted @ 2018-04-30 09:07 UnderScrutiny 阅读(109) 评论(0) 推荐(0)