如何分配数值模板类型

时间:2013-01-29 07:46:28

标签: c# templates casting type-conversion

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

0 个答案:

没有答案