เมื่อฉันพยายามใช้float
เป็นพารามิเตอร์เทมเพลตคอมไพลเลอร์จะร้องหารหัสนี้ในขณะที่int
ทำงานได้ดี
เป็นเพราะฉันไม่สามารถใช้float
เป็นพารามิเตอร์เทมเพลตได้หรือไม่?
#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;
}
ข้อผิดพลาด:
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'
ฉันกำลังอ่าน"โครงสร้างข้อมูลสำหรับโปรแกรมเมอร์เกม"ของรอนเพนตันผู้เขียนผ่าน a float
แต่เมื่อฉันลองมันดูเหมือนจะไม่รวบรวม
float
เป็นพารามิเตอร์เทมเพลตที่ไม่ใช่ประเภทหรือไม่? ในบทนั้นคืออะไร?