我对 javascript 非常陌生,类和方法的工作方式让我感到困惑。
基本上我有这样的代码:
function container(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
this.sumUp = function addUp(x, y, z) {
var a = x + y + z;
};
}
我想要做的是在我的代码的其他地方使用容器中定义的函数,使用容器中的值。我该怎么做呢?
类似的东西
container1 = new container (1, 2, 3);
container.sumUp(this.x, this.y, this.z);
或类似的东西。我很困惑,认为我把整件事都搞错了。