结构体

typedef struct _point{

int x;

int y;

}point; //定义类,给类一个别名,相当于int

///////////

struct _point{

int x;

int y;

}point; //定义类,给类一个别名,相当于int a中的a ,是个实例

posted on 2011-10-05 10:23  凌&&晨  阅读(102)  评论(0编辑  收藏  举报

导航