Javascript Float32数组抛出即使数组定义良好,也无法读取null的属性'0'

时间:2015-04-05 19:15:00

标签: javascript arrays null

您可以在此处看到调试窗口:http://i.imgur.com/ZnfeKT1.png 如您所见,该数组不为null,实际上有2个元素。为什么我得到那个错误?

编辑:此代码是用C#编写的,并通过DuoCode转换为JS:

WebGL.Vector2 = $d.declare("WebGL.Vector2", null, 62, $asm, function($t, $p) {
$t.cctor = function() {
    $t.GLVector2 = vec2;
};
$t.ctor = function Vector2() {
    this.vec = null;
};
$t.ctor.prototype = $p;
$p.get_X = function Vector2_get_X() {
    return this.vec[0]; //this is line 777
};
$p.set_X = function Vector2_set_X(value) {
    this.vec[0] = value;
    return value;
};
$p.get_Y = function Vector2_get_Y() {
    return this.vec[1];
};
$p.set_Y = function Vector2_set_Y(value) {
    this.vec[1] = value;
    return value;
};
$p.get_Magnitude = function Vector2_get_Magnitude() {
    return Math.sqrt(this.get_X() * this.get_X() + this.get_Y() * this.get_Y());
};
$p.get_Normalized = function Vector2_get_Normalized() {
    var m = this.get_Magnitude();
    return WebGL.Vector2.op_Division(this, m);
};
$t.ctor$1 = function Vector2() {
    this.vec = $d.array(System.Single, 2);
    this.set_X(0);
    this.set_Y(0);
};
$t.ctor$1.prototype = $p;
$t.ctor$2 = function Vector2(x, y) {
    this.vec = $d.array(System.Single, 2);
    this.set_X(x);
    this.set_Y(y);
};
$t.ctor$2.prototype = $p;
$p.Rotated = function Vector2_Rotated(angle) {
    var rad = Math.PI * angle / 180;
    var cs = Math.cos(rad);
    var sn = Math.sin(rad);
    return new WebGL.Vector2.ctor$2(this.get_X() * cs - this.get_Y() * sn, this.get_X() * sn + this.get_Y() * cs);
};
$p.Transformed = function Vector2_Transformed(matrix) {
    var ret = new WebGL.Vector2.ctor$1();
    $t().GLVector2.transformMat3(ret.vec, this.vec, matrix.mat);
    return ret;
};
$t.op_Multiply = function Vector2_op_Multiply(v, f) {
    return new WebGL.Vector2.ctor$2(v.get_X() * f, v.get_Y() * f);
};
$t.op_Division = function Vector2_op_Division(v, f) {
    return new WebGL.Vector2.ctor$2(v.get_X() / f, v.get_Y() / f);
};
$t.op_Addition = function Vector2_op_Addition(v1, v2) {
    return new WebGL.Vector2.ctor$2(v1.get_X() + v2.get_X(), v1.get_Y() + v2.get_Y());
};
$t.op_Subtraction = function Vector2_op_Subtraction(v1, v2) {
    return new WebGL.Vector2.ctor$2(v1.get_X() - v2.get_X(), v1.get_Y() - v2.get_Y());
};
$t.Dot = function Vector2_Dot(v1, v2) {
    return v1.get_X() * v2.get_X() + v1.get_Y() * v2.get_Y();
};
$p.ToString = function Vector2_ToString() {
    return String.Format("[{0}, {1}]", $d.array(System.Object, [this.get_X(), this.get_Y()]));
};

});

2 个答案:

答案 0 :(得分:1)

好的问题如下:由于某种原因,DuoCode为结构生成一个默认构造函数,它使用null初始化值类型。当我显式调用Vector2 v = new Vector2()时,仅调用我的自定义默认构造函数。这种行为非常出乎意料,说实话非常烦人。我希望这将在以后的版本中修复。

答案 1 :(得分:1)

你是对的,这是一种不好的行为,但它是因为C#6(无参数构造函数)中的实验性功能而发生的。通常C#禁止声明结构的默认构造函数,这就是为什么必须有一个初始化结构的自动默认ctor(并将null设置为引用类型字段,如数组“vec”)。

C#6为主要构造函数添加了选项 - 但微软已经意识到它太复杂了,我相信他们现在打算放弃这个功能。

DuoCode使用Roslyn进行编译,这就是出现这种情况的原因。下一版Roslyn和DuoCode可能会禁止这一点。

我建议您将Vector2结构化为具有两个字段(x,y)的不可变结构 - 这将是最好的。

免责声明:我与DuoCode开发人员合作

编辑:糟糕,它被称为无参数构造函数