1

我有一个用 coffeescript 编写的长等式,它在编译为 JavaScript 时会产生一个函数调用:

咖啡脚本:

@u[idx] = @max(0, currU + t * ((@dU * ((@uu[right] + @uu[left] + @uu[bottom] + @uu[top]) -4 * currU) - d2) + currF * (1.0 - currU)))

JavaScript:

this.max(0, currU + t * ((this.dU * ((this.uu[right] + this.uu[left] + this.uu[bottom] + this.uu[top])(-4 * currU)) - d2) + currF * (1.0 - currU)));

问题是这部分:

((@uu[right] + @uu[left] + @uu[bottom] + @uu[top]) -4 * currU)

这变成了一个函数调用:

((this.uu[right] + this.uu[left] + this.uu[bottom] + this.uu[top])(-4 * currU))

有人可以解释这里发生了什么。

4

1 回答 1

3

你要这个:

@u[idx] = @max(0, currU + t * ((@dU * ((@uu[right] + @uu[left] + @uu[bottom] + @uu[top]) - 4 * currU) - d2) + currF * (1.0 - currU)))

编译为:

this.u[idx] = this.max(0, currU + t * ((this.dU * ((this.uu[right] + this.uu[left] + this.uu[bottom] + this.uu[top]) - 4 * currU) - d2) + currF * (1.0 - currU)));

愚蠢的小问题是-4, 与- 4.

如果没有空格,编译器会假定 是'function'-4 * currU的参数,.(@uu[right] + @uu[left] + @uu[bottom] + @uu[top])

于 2012-09-30T19:16:27.007 回答