1.std::find auto found = std::find(vec.cbegin(),vec.cend(),value); 2.std::find_if 3.std::count int count = std::count(vec.cbegin(),vec.cend(),value); Read More
背景:Windows系统,1920*1080屏放大150%,如果QT窗口的最小size大于可视区域,拖动窗口边放大或缩小时,窗口会发生下移,直至消失。 原因: Qt内部原因。 解决方案:强制限制窗口最小size在可视区域内,调用函数 setMininumWidth() / setMininumHie Read More