Ketika saya mencoba untuk menggunakan float
sebagai parameter template, kompilator meminta kode ini, sementara int
berfungsi dengan baik.
Apakah karena saya tidak dapat menggunakan float
sebagai parameter template?
#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;
}
Kesalahan:
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'
Saya membaca "Struktur Data untuk Pemrogram Game" oleh Ron Penton, penulis melewati a float
, tetapi ketika saya mencobanya sepertinya tidak dapat dikompilasi.
float
sebagai parameter template non-tipe ? Dalam bab apakah itu?