std::ranges::copy 不会接受 std::vector 中的 visual studio
std::ranges::copy will not accept std::vector in visual studio
下面的代码无法在 Visual Studio 中编译,给出
Error C2672 'operator __surrogate_func': no matching overloaded function found sortms C:\Users\David\source\repos\sortms\sortms.cpp 103
当我使用 C 样式数组时,该函数的工作方式与编写的一样。如果我使用指定 input.begin(), input.end(), output.begin()
.
的注释代码,该函数也有效
我正在使用 Visual Studio Community 2019 v16.8.6,使用 /std:c++latest
选项进行编译。我以为标准容器是基于范围的?
有人可以帮助我更好地理解 std::range::copy()
与 std::copy()
在处理向量或其他标准容器时的优势吗?
#include <iostream>
#include <ranges>
#include <algorithm>
#include <array>
#include <utility>
#include <vector>
#include <functional>
#include <string>
#include <concepts>
void ranges_copy_demo()
{
std::cout << "\nstd::ranges::copy()\n";
/*
int const input[] = { 1, 2, 3, 5, 8, 13, 21, 34, 45, 79 };
int output[10] = { 0 };
*/
std::vector<int> input = { 1, 2, 3, 5, 8, 13, 21, 34, 45, 79 };
std::vector<int> output(10, 0);
// auto r1 = std::ranges::copy(input.begin(), input.end(), output.begin());
auto r1 = std::ranges::copy(input, output);
print_range("copy output", output, r1);
// copy number divisible by 3
// auto r2 = std::ranges::copy_if(input.begin(), input.end(), output.begin(), [](const int i) {
auto r2 = std::ranges::copy_if(input, output, [](const int i) {
return i % 3 == 0;
});
print_range("copy_if %3 output", output, r2);
// copy only non-negative numbers from a vector
std::vector<int> v = { 25, 15, 5, 0, -5, -15 };
// auto r3 = std::ranges::copy_if(v.begin(), v.end(), output.begin(), [](const int i) {
auto r3 = std::ranges::copy_if(v, output, [](const int i) {
return !(i < 0);
});
print_range("copy_if !(i < 0) output", output, r3);
}
因为其他人可能会陷入与我相同的心理陷阱。以下适用于 c 样式数组或 std::container
auto r1 = std::ranges::copy(input, std::begin(output));
下面的代码无法在 Visual Studio 中编译,给出
Error C2672 'operator __surrogate_func': no matching overloaded function found sortms C:\Users\David\source\repos\sortms\sortms.cpp 103
当我使用 C 样式数组时,该函数的工作方式与编写的一样。如果我使用指定 input.begin(), input.end(), output.begin()
.
我正在使用 Visual Studio Community 2019 v16.8.6,使用 /std:c++latest
选项进行编译。我以为标准容器是基于范围的?
有人可以帮助我更好地理解 std::range::copy()
与 std::copy()
在处理向量或其他标准容器时的优势吗?
#include <iostream>
#include <ranges>
#include <algorithm>
#include <array>
#include <utility>
#include <vector>
#include <functional>
#include <string>
#include <concepts>
void ranges_copy_demo()
{
std::cout << "\nstd::ranges::copy()\n";
/*
int const input[] = { 1, 2, 3, 5, 8, 13, 21, 34, 45, 79 };
int output[10] = { 0 };
*/
std::vector<int> input = { 1, 2, 3, 5, 8, 13, 21, 34, 45, 79 };
std::vector<int> output(10, 0);
// auto r1 = std::ranges::copy(input.begin(), input.end(), output.begin());
auto r1 = std::ranges::copy(input, output);
print_range("copy output", output, r1);
// copy number divisible by 3
// auto r2 = std::ranges::copy_if(input.begin(), input.end(), output.begin(), [](const int i) {
auto r2 = std::ranges::copy_if(input, output, [](const int i) {
return i % 3 == 0;
});
print_range("copy_if %3 output", output, r2);
// copy only non-negative numbers from a vector
std::vector<int> v = { 25, 15, 5, 0, -5, -15 };
// auto r3 = std::ranges::copy_if(v.begin(), v.end(), output.begin(), [](const int i) {
auto r3 = std::ranges::copy_if(v, output, [](const int i) {
return !(i < 0);
});
print_range("copy_if !(i < 0) output", output, r3);
}
因为其他人可能会陷入与我相同的心理陷阱。以下适用于 c 样式数组或 std::container
auto r1 = std::ranges::copy(input, std::begin(output));