6-1.2 改错

#include<iostream>
#include<stdlib.h>
using namespace std;
class C
{private:
  int x;
 public:
C(int x){this->x = x;}
  int getX()const {return x;}
};
int main()
{  const C c(5);
  cout<<c.getX();
  return 0;
}

我觉得还是一比较好用一点,可能是还没习惯const吧。。。

你可能感兴趣的:(6-1.2 改错)