1
A,B和C呼叫之間有什麼區別?模板調用有什麼區別?
#include <iostream>
using namespace std;
template<class T> T max(T a, T b) {
return (a >= b) ? a : b;
}
int main() {
float a = 4.0;
float b = 6.0f;
cout << max(a, b) << endl; //A
cout << max<double>(a, b) << endl; //B
cout << max<double>(4.0, 6.0f) << endl; //C
}
同樣的事情,不同的返回值,一些隱式轉換(浮動 - >雙) – Fefux
這是你如何找出產生什麼功能: 到函數中加入這一行: '的std ::法院<<(__PRETTY_FUNCTION__) << std :: endl;' –