我写了一个按长度对向量字符串进行排序的代码。不幸的是,我不确定它是否可以以此形式在下一个标准中工作。这是C ++ 20中正确的代码吗?
#include <algorithm>
#include <iostream>
#include <string>
#include <ranges>
#include <vector>
int main() {
std::vector<std::string> words = {"std", "vector", "string", "optional", "clamp"};
// C++11
// std::sort(words.begin(), words.end(),
// [](auto& lhs, auto& rhs) { return lhs.length() < rhs.length(); });
// maybe C++20?
using namespace std::ranges;
sort(words, {}, size); // or 'sort(words, less{}, size);'
for (auto& word : words) {
std::cout << word << "\n";
}
}
您的代码很好,可以在即将到来的GCC 10下编译。
正如@Ayxan指出的那样,C ++ 20仍将具有通常的算法,因此,如果不需要,您不需要更改代码。
[当您仅使用标准或非常常用的库编写代码时,可以在以下站点上尝试使用较新的编译器和实验性标准版本进行编译:
和其他。