首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zxh371的代码贴全部
#ifndef _POINT_H
#define _POINT_H
class Point{
public:
Point();
Point(int x,int y);
~Point();
void move(int newx,int newy);
int getx() const {return x;};
int gety() const {return y;};
static void showcount();
private:
......................
阅读全部 | 2013年12月4日 11:24
1
zxh371