std::views 尚未申报
std::views has not been declared
我正在尝试使用来自 c++20 的 ranges
库,并且我有这个简单的循环。
for (const int& num : vec | std::views::drop(2)) {
std::cout << num << ' ';
}
我收到一条错误消息 error: 'std::views' has not been declared
。我没有收到关于包含 header.
的任何错误
这是我的g++
g++.exe (MinGW-W64 x86_64-ucrt-posix-seh, built by Brecht Sanders) 11.2.0
Copyright (C) 2021 Free Software Foundation, Inc.
据我所知,只要你有 c++20,它就可以工作。
以下示例无法在我的机器上编译:
#include <iostream>
#include <ranges>
#include <vector>
int main() {
std::cout << "Hello world!";
std::vector <int> vec = {1, 2, 3, 4, 5};
// print entire vector
for (const int& num : vec) {
std::cout << num << ' ';
}
std::cout << "\n";
// print the vector but skip first few elements
for (const int& num : vec | std::views::drop(2)) {
std::cout << num << ' ';
}
return 0;
}
根据你编译器的版本,默认的标准不同。 11.2
是 C++ 17 AFAIK。
Cou 可以只添加一个标志并编译:
g++ --std=c++20 main.cc
我正在尝试使用来自 c++20 的 ranges
库,并且我有这个简单的循环。
for (const int& num : vec | std::views::drop(2)) {
std::cout << num << ' ';
}
我收到一条错误消息 error: 'std::views' has not been declared
。我没有收到关于包含 header.
这是我的g++
g++.exe (MinGW-W64 x86_64-ucrt-posix-seh, built by Brecht Sanders) 11.2.0
Copyright (C) 2021 Free Software Foundation, Inc.
据我所知,只要你有 c++20,它就可以工作。
以下示例无法在我的机器上编译:
#include <iostream>
#include <ranges>
#include <vector>
int main() {
std::cout << "Hello world!";
std::vector <int> vec = {1, 2, 3, 4, 5};
// print entire vector
for (const int& num : vec) {
std::cout << num << ' ';
}
std::cout << "\n";
// print the vector but skip first few elements
for (const int& num : vec | std::views::drop(2)) {
std::cout << num << ' ';
}
return 0;
}
根据你编译器的版本,默认的标准不同。 11.2
是 C++ 17 AFAIK。
Cou 可以只添加一个标志并编译:
g++ --std=c++20 main.cc