STL提供了各种函数来查找容器类中的元素. Qt 5.5容器类中是否有类似的功能,例如QList还是QVector?
特别是,我正在寻找一个等效的单行,即使用Qt容器和Qt算法的std :: find_if:
int main(int arg, char** args) {
std::vector<int> c = { 2,3,4,6,6,15 };
if (std::find_if(c.begin(), c.end(), [](const int& value) { return value % 5 == 0; }) != c.end()) {
std::cout << "At least one element divisible by 5." << std::endl;
} else {
std::cout << "No element is divisible by 5." << std::endl;
}
return 0;
}
元素可被5整除的谓词应该只是作为一个例子.
Qt框架是否提供了这么好的算法?
解决方法:
算法头中定义的STL算法可以与Qt容器一起使用.如果Qt缺少等效算法,则没有理由避免使用STL算法.如果Qt是使用STL支持构建的,它应该默认工作.
#include <algorithm> // std::find_if
#include <QApplication>
#include <QVector>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QVector<int> c{ 2,3,4,6,6,15 };
if (std::find_if(c.begin(), c.end(), [](const int& value) { return value % 5 == 0; }) != c.end()) {
...
}
return app.exec();
}