“Lambda Capture als const cpp” Code-Antworten

Lambda Capture als const cpp

//In c++17 using std::as_const:

[&best_string = std::as_const(best_string)](const string& s)
{
    best_string = s; // fails
};
UBoiii

Lambda Capture als const cpp

//In c++14 using static_cast / const_cast:

[&best_string = static_cast<const std::string&>(best_string)](const string& s)
{
    best_string = s; // fails
};
UBoiii

Ähnliche Antworten wie “Lambda Capture als const cpp”

Fragen ähnlich wie “Lambda Capture als const cpp”

Weitere verwandte Antworten zu “Lambda Capture als const cpp” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen