以下C++代码的输出结果是什么?
#include #include
template
T max(T a, T b) {
return (a > b) ? a : b;}
int main() {
std::string s1 = "hello";
std::string s2 = "world";
std::cout << max(s1, s2) << std::endl;
return 0;}