CPlusPlusThings/modern_C++_30/SFINAE/sfinae paper/overload2.cpp
Light-City 66fee47bed update
2020-01-07 10:59:02 +08:00

20 lines
320 B
C++

//
// Created by light on 20-1-6.
//
#include <iostream>
std::string f(...) // Variadic functions are so "untyped" that...
{
return "...";
}
template<typename T>
std::string f(const T &t)// ...this templated function got the precedence!
{
return "T";
}
int main() {
std::cout << f<int>(1) << std::endl;
}