вот это код работает ок
#include <algorithm>
#include <string>
#include <vector>
#include <iostream>
int main() {
std::vector<std::string> v1 = {"b", "Ab", "AA"};
std::sort(std::begin(v1), std::end(v1),
[](std::string a, std::string b){
std::transform(std::begin(a), std::end(a),std::begin(a), [](char ch){return std::tolower(ch);});
std::transform(std::begin(b), std::end(b),std::begin(b), [](char ch){return std::tolower(ch);});
return a < b;
});
for (const std::string &str: v1) std::cout << str << ' ';
std::cout << '\n';
return 0;
}
При этом cppreference пишет про компаратор, что
The signature of the comparison function should be equivalent to the following:
bool cmp(const Type1 &a, const Type2 &b);
While the signature does not need to have const &, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) Type1 and Type2 regardless of value category (thus, Type1 & is not allowed, nor is Type1 unless for Type1 a move is equivalent to a copy (since C++11)).
Это в цппреференс ошибка какая, или я что-то не пониаю? Прошу помощи.
а почему по ссылке принимать не хочешь?
это ты вот так stricmp переписал в 4 строки?
Я могу принять как угодно. Я не понимаю, почему на сппреференс - одно, а в коде другое. Если кто сталкивался - прошу помочь.
Это пример, высосанный из пальца, чтобы продемонстрировать проблему.
а в чём вопрос? Написано же что можно и без const&
в том, что “(thus, Type1 & is not allowed, nor is Type1 unless for Type1 a move is equivalent to a copy (since C++11))"
>запрещены лвалью ссылки и типы для которых копи = мув ну у тебя ссылок нет, и копи у стринга не эквивалентно муву
не разрешена передача по ссылке и по значению
Обсуждают сегодня