Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想问一下 POINT 结构是否是存储鼠标坐标的唯一方法?我对这种方式的问题是,当您声明时:
POINT ps[20];
你需要有一个固定大小的数组。如果我需要存储更多积分怎么办?有没有办法让它动态化(当它达到限制时调整自身大小)。我想使用这个数组来获取鼠标坐标,然后在 WM_PAINT: 消息中画线。谢谢
case WM_MOUSEMOVE: { pt[i].x=LOWORD(lparam); pt[i++].y=HIWORD(lparam); -------- }
您将使用 POINT 结构数组。