摘要: 先看下面程序结果输出什么? 1 #include <iostream> 2 using namespace std; 3 4 class A 5 { 6 private: 7 int x; 8 public: 9 A(){ 10 x=99; 11 cout<<"看看这里是否会被调用"<<endl; 阅读全文
posted @ 2018-03-25 16:31 小陈同学啦 阅读(1355) 评论(0) 推荐(0) 编辑