int i=0; foreach (QString str ,students[i]) { qDebug() << str; i++; const QString studentID = str; for(auto& id : students){ auto studentIt = m_students.find(id); if(studentIt == m_students.end()){ qDebug() << "student is not exist"; return; } auto it = studentIt.value()->m_workMap.find(actName); if(it != studentIt.value()->m_workMap.end()){ qDebug() << "activity repeat"; return; } activity* act = new activity; act->m_name = actName; act->m_startTime = time; act->m_endTime = -1; act->m_type = type; act->m_data.push_back(data); act->m_week.push_back(week); studentIt.value()->m_workMap.insert(act->m_name, act); log(m_currentPeople, "发布了活动[" + actName + "]给[" + studentIt.value()->m_name + "]"); } }
时间: 2024-02-10 11:08:33 浏览: 69
php str_replace的替换漏洞
这段代码中似乎有一个问题,即在第2行中声明了 `int i=0;`,但是在 `foreach` 循环中没有对 `i` 进行更新,这会导致 `students[0]` 中的元素被反复处理,而其他 `students` 中的元素则不会被处理。可能需要将 `i` 的更新操作移动到 `foreach` 循环中。另外,代码中涉及到了一些函数和变量,但是缺少上下文,因此无法判断代码的整体逻辑和正确性。
阅读全文