Std:: endl и вариационный шаблон - программирование
Подтвердить что ты не робот

Std:: endl и вариационный шаблон

код:

#include <iostream>

void out()
{
}

template<typename T, typename... Args>
void out(T value, Args... args)
{
    std::cout << value;
    out(args...);
}

int main()
{
    out("12345", "  ", 5, "\n"); // OK
    out(std::endl);              // compilation error
    return 0;
}

Ошибки сборки:

g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++11 -pthread -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "../main.cpp"
../main.cpp: In function ‘int main()’:
../main.cpp:17:15: error: no matching function for call to ‘out(<unresolved overloaded function type>)’
../main.cpp:17:15: note: candidates are:
../main.cpp:3:6: note: void out()
../main.cpp:3:6: note:   candidate expects 0 arguments, 1 provided
../main.cpp:8:6: note: template<class T, class ... Args> void out(T, Args ...)
../main.cpp:8:6: note:   template argument deduction/substitution failed:
../main.cpp:17:15: note:   couldn't deduce template parameter ‘T’

Итак, все в порядке, кроме std::endl. Как я могу это исправить (кроме использования "\n" )?

4b9b3361

Ответ 1

std::endl является перегруженной функцией (во многих реализациях STL, шаблоном), а компилятор не имеет информации о том, что выбрать.

Просто введите его как static_cast<std::ostream&(*)(std::ostream&)>(std::endl)