请修正这段代码ExMessage msg; while (true) //鼠标消息 { if (peekmessage(&msg,EM_MOUSE)) { switch (msg.message) { case WM_LBUTTONDOWN: if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { int num = 0; std::thread t(user.timeflow,std::ref(num)); while (true) { std::this_thread::sleep_for(std::chrono::milliseconds(500)); } t.join; user.startlight(); } else if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { user.stop(); } else if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { user.add(); } break; default: break; } } }
时间: 2023-06-27 10:08:36 浏览: 131
ExMessage msg;
while (true) //鼠标消息
{
if (PeekMessage(&msg, NULL, EM_MOUSE, EM_MOUSE, PM_REMOVE))
{
switch (msg.message)
{
case WM_LBUTTONDOWN:
if (msg.x >= 540 && msg.x <= 610 && msg.y >= 45 && msg.y <= 80)
{
int num = 0;
std::thread t(&User::timeflow, std::ref(user), std::ref(num));
while (true)
{
std::this_thread::sleep_for(std::chrono::milliseconds(500));
}
t.join();
user.startlight();
}
else if (msg.x >= 540 && msg.x <= 610 && msg.y >= 85 && msg.y <= 120)
{
user.stop();
}
else if (msg.x >= 540 && msg.x <= 610 && msg.y >= 125 && msg.y <= 160)
{
user.add();
}
break;
default:
break;
}
}
}
修正后的代码考虑了以下几个问题:
1. 使用了大写字母的函数名改为小写字母,如 peekmessage 改为 PeekMessage。
2. 使用了 PM_REMOVE 标志来从消息队列中移除已经处理的消息。
3. switch-case 语句中的每个 case 语句都对应了一个不同的按钮事件。
4. 创建了一个 std::thread 对象 t,并将它作为第一个参数传递给 user.timeflow() 函数,同时传递了 num 参数的引用。
5. 在创建线程后,使用 while 循环来保持主线程的运行,直到用户点击了 startlight 按钮。
6. 在 while 循环结束后,使用 t.join() 来等待子线程执行完成。
7. 通过添加 user 对象来调用相应的成员函数。
阅读全文