C++类和对象

2017-07-27  本文已影响4人  阳光男孩joe

类定义:

class Coordinate
{
public:
 int x;
 int y;
 void printX(){
   cout<<x<<endl;
 }
  void printY(){
  cout<<y<<endl;
  }
}

类实例化对象:从栈中实例化,从堆中实例化。

int main(){
  Coordinate cood;//栈实例化
  cood.x=10;
  cood.y=20;
  cood.printX();
  cood.printY();
  Coordinate *cood=new Coordinate();//堆实例化
  if(cood!=null){
    cood->x=10;
    cood->y=20;
    cood->printX();
    cood->printY();
  }
   system("pause");
}

访问限定符:
public 公有的
protected 受保护的
private 私有的

上一篇 下一篇

猜你喜欢

热点阅读