template<class T>
class test
{
public:
test()
{
}
test(T& e)
{
}
};
int main()
{
test<double> d(4.3);
return 0;
}
Скомпилировано с использованием g ++ 4.4.1 со следующими ошибками:
g++ test.cpp -Wall -o test.exe
test.cpp: In function 'int main()':
test.cpp:18: error: no matching function for call to 'test<double>::test(double)
'
test.cpp:9: note: candidates are: test<T>::test(T&) [with T = double]
test.cpp:5: note: test<T>::test() [with T = double]
test.cpp:3: note: test<double>::test(const test<double>&)
make: *** [test.exe] Error 1
Однако это работает:
double a=1.1;
test<double> d(a);
Почему это происходит?
Возможно ли, что g ++ не может неявно преобразовать литеральное выражение 1.1 в double?
Спасибо.