Kiedy próbuję użyć float
jako parametru szablonu, kompilator woła o ten kod, podczas gdy int
działa dobrze.
Czy to dlatego, że nie mogę użyć float
jako parametru szablonu?
#include<iostream>
using namespace std;
template <class T, T defaultValue>
class GenericClass
{
private:
T value;
public:
GenericClass()
{
value = defaultValue;
}
T returnVal()
{
return value;
}
};
int main()
{
GenericClass <int, 10> gcInteger;
GenericClass < float, 4.6f> gcFlaot;
cout << "\n sum of integer is "<<gcInteger.returnVal();
cout << "\n sum of float is "<<gcFlaot.returnVal();
return 0;
}
Błąd:
main.cpp: In function `int main()':
main.cpp:25: error: `float' is not a valid type for a template constant parameter
main.cpp:25: error: invalid type in declaration before ';' token
main.cpp:28: error: request for member `returnVal' in `gcFlaot',
which is of non-class type `int'
Czytam „Struktury danych dla programistów gier” Rona Pentona, autor podaje float
, ale kiedy próbuję, nie wydaje się, aby się kompilował.
float
jako parametru szablonu innego niż typ ? W którym to rozdziale?