我无法指定数值。 应该使用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;
}