我无法分配数值。应该对 double 和 int 值使用模板。演员没有帮助。
在 C++ 中没有问题。
class array<Type>
{
public void alloc(int n)
{
a=new Type[n];
for (int i = 0; i < n; i++) a[i] = (Type)0; <-----Error
}
Type[] a;
}