CPoint类与POINT在使用上有什么区别
答案:1 悬赏:0 手机版
解决时间 2021-11-28 17:30
- 提问者网友:鐵馬踏冰河
- 2021-11-27 20:02
CPoint类与POINT在使用上有什么区别
最佳答案
- 五星知识达人网友:患得患失的劫
- 2021-11-27 20:36
typedef struct tagPOINT
{
LONG x;
LONG y;
} POINT;
class CPoint : public tagPOINT
{
public:
...
};
CPoint s同时也是一个POINT结构,不用转,直接用
{
LONG x;
LONG y;
} POINT;
class CPoint : public tagPOINT
{
public:
...
};
CPoint s同时也是一个POINT结构,不用转,直接用
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯