摘要: 历经高考,是否能让你对自己的能力、前进的方向有所了解? 在人生的转折口,或许对于我来说没有那么幸运,未能登上更高更好的学府。 这样的人生似乎没有更多的选择,好像就这样恍惚得随着时间前行! 拿着这份不安的欣喜,来到陌生的城市, 偌大的世界有重新带给我一份另类的礼物,我随着脚步,耐心拆开了礼带,看见它的 阅读全文
posted @ 2020-03-12 17:00 CollisionDimension 阅读(107) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; class A{ int a, b;public: A(int x = 0, int y = 0) { a = x; b = y; }};int main(){ A *p; p = new A(4,5); system( 阅读全文
posted @ 2020-03-12 15:15 CollisionDimension 阅读(72) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std;class f{private: int x, y;public: void f1() { x = 10; y = 10; } void print() { cout << x << "," << y << endl; } 阅读全文
posted @ 2020-03-12 15:13 CollisionDimension 阅读(75) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std; class Test{private: static int num; public: Test(int); void show();};int Test::num = 5;Test::Test(int n){ num 阅读全文
posted @ 2020-03-12 15:12 CollisionDimension 阅读(100) 评论(0) 推荐(0) 编辑